2010-06-24 Steve Ellcey <sje@cup.hp.com>
authorsje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Jun 2010 22:31:23 +0000 (22:31 +0000)
committersje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Jun 2010 22:31:23 +0000 (22:31 +0000)
PR testsuite/43283
* gcc.dg/lto/20091216-1_0.c: Use newline instead of semicolon
and add argument to nop for IA64.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161342 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/lto/20091216-1_0.c

index ad9c1f3..9954c46 100644 (file)
@@ -1,3 +1,9 @@
+2010-06-24  Steve Ellcey  <sje@cup.hp.com>
+
+       PR testsuite/43283
+       * gcc.dg/lto/20091216-1_0.c: Use newline instead of semicolon
+       and add argument to nop for IA64.
+
 2010-06-24  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR target/44588
index ee3b6c7..9cb647b 100644 (file)
@@ -1,6 +1,10 @@
 /* { dg-lto-do run } */
 
-asm (".globl start_; start_: nop");
+#ifdef __ia64
+asm (".globl start_\n\tstart_: nop 0");
+#else
+asm (".globl start_\n\tstart_: nop");
+#endif
 
 int
 main ()