* g++.dg/parse/parens3.C: Use register "4" on hppa.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233028
138bc75d-0d04-0410-961f-
82ee72b054a4
2016-01-31 John David Anglin <danglin@gcc.gnu.org>
+ 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 <pault@gcc.gnu.org>
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)
{