From: John David Anglin Date: Mon, 1 Feb 2016 00:38:17 +0000 (+0000) Subject: re PR debug/68244 (FAIL: g++.dg/parse/parens3.C -std=gnu++98 (internal compiler... X-Git-Tag: upstream/12.2.0~49064 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=61083a4ba7bab1e24926a0591e85f7d988992392;p=platform%2Fupstream%2Fgcc.git re PR debug/68244 (FAIL: g++.dg/parse/parens3.C -std=gnu++98 (internal compiler error)) PR debug/68244 * g++.dg/parse/parens3.C: Use register "4" on hppa. From-SVN: r233028 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 24940a8..f7f2d07 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,8 @@ 2016-01-31 John David Anglin + PR debug/68244 + * g++.dg/parse/parens3.C: Use register "4" on hppa. + * gcc.dg/tree-ssa/vector-5.c: Add -fno-common option on hppa*-*-hpux*. 2016-01-31 Paul Thomas diff --git a/gcc/testsuite/g++.dg/parse/parens3.C b/gcc/testsuite/g++.dg/parse/parens3.C index afb392b..6004475 100644 --- a/gcc/testsuite/g++.dg/parse/parens3.C +++ b/gcc/testsuite/g++.dg/parse/parens3.C @@ -5,7 +5,12 @@ struct s { int i; }; +#ifdef __hppa__ +/* Register %r1 can't be fixed when generating PIC code. */ +register struct s *reg __asm__( "4" ); +#else register struct s *reg __asm__( "1" ); +#endif int f(void) {