aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Ellcey <sje@cup.hp.com>2010-06-24 22:31:23 +0000
committerSteve Ellcey <sje@cup.hp.com>2010-06-24 22:31:23 +0000
commit854ed2e67397a8efb9f26331eafca712c4031001 (patch)
treee03c69fc51e4acd0e233f3e55b5daf079c5d0ddb
parent4c5e8875fd2931b38513412277e5093e2db3ad14 (diff)
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. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@161342 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gcc.dg/lto/20091216-1_0.c6
2 files changed, 11 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index ad9c1f3a164..9954c461924 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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
diff --git a/gcc/testsuite/gcc.dg/lto/20091216-1_0.c b/gcc/testsuite/gcc.dg/lto/20091216-1_0.c
index ee3b6c73c6b..9cb647bb0e9 100644
--- a/gcc/testsuite/gcc.dg/lto/20091216-1_0.c
+++ b/gcc/testsuite/gcc.dg/lto/20091216-1_0.c
@@ -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 ()