summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--trunk/ChangeLog7
-rw-r--r--trunk/testsuite/reloc5.c2
-rw-r--r--trunk/testsuite/shuffle2.c2
-rw-r--r--trunk/testsuite/shuffle9.c2
4 files changed, 10 insertions, 3 deletions
diff --git a/trunk/ChangeLog b/trunk/ChangeLog
index 649aff0..153f926 100644
--- a/trunk/ChangeLog
+++ b/trunk/ChangeLog
@@ -1,3 +1,10 @@
+2011-08-25 William Cohen <wcohen@redhat.com>
+
+ * testsuite/shuffle2.c: Use %nobits instead of @nobits
+ to be arm assembler friendly.
+ * testsuite/shuffle9.c: Likewise.
+ * testsuite/reloc5.c (main): Likewise.
+
2011-06-22 Jakub Jelinek <jakub@redhat.com>
* src/dwarf2.h (DW_OP_GNU_parameter_ref): Define.
diff --git a/trunk/testsuite/reloc5.c b/trunk/testsuite/reloc5.c
index 4bc8cff..123ad5d 100644
--- a/trunk/testsuite/reloc5.c
+++ b/trunk/testsuite/reloc5.c
@@ -14,7 +14,7 @@ int main (void)
printf (" for (x = 0; x < 16384; ++x)\n");
printf (" if (testzero[x]) abort ();\n");
printf (" exit (0);\n}\n\n");
- printf ("asm (\".section nonalloced,\\\"aw\\\",@nobits\\n\\t\"\n");
+ printf ("asm (\".section nonalloced,\\\"aw\\\",%%nobits\\n\\t\"\n");
printf (" \".globl testzero\\n\\t\"\n");
printf (" \"testzero: .skip 16384\\n\\t\"\n");
printf (" \".previous\");\n");
diff --git a/trunk/testsuite/shuffle2.c b/trunk/testsuite/shuffle2.c
index 4d761d4..8c06942 100644
--- a/trunk/testsuite/shuffle2.c
+++ b/trunk/testsuite/shuffle2.c
@@ -16,7 +16,7 @@ int main()
exit (0);
}
-asm (".section nonalloced,\"aw\",@nobits\n\t"
+asm (".section nonalloced,\"aw\",%nobits\n\t"
".globl testzero\n\t"
"testzero: .skip 16384\n\t"
".previous");
diff --git a/trunk/testsuite/shuffle9.c b/trunk/testsuite/shuffle9.c
index 21ac534..201eabc 100644
--- a/trunk/testsuite/shuffle9.c
+++ b/trunk/testsuite/shuffle9.c
@@ -16,7 +16,7 @@ int main()
exit (0);
}
-asm (".section nonalloced,\"aw\",@nobits\n\t"
+asm (".section nonalloced,\"aw\",%nobits\n\t"
".globl testzero\n\t"
"testzero: .skip 16384\n\t"
".previous\n");