Hi All,

This fixes a -Wpedantic error with the testcase because of extra ; left after 
the
functions.

Regtested single test on aarch64-none-elf and no issues.

Committed under the GCC obvious rule.

Thanks,
Tamar

gcc/testsuite/
2018-07-06  Tamar Christina  <tamar.christ...@arm.com>

        * gcc.target/aarch64/struct_cpy.c: Remove ;.

-- 
diff --git a/gcc/testsuite/gcc.target/aarch64/struct_cpy.c b/gcc/testsuite/gcc.target/aarch64/struct_cpy.c
index 4feb3ea990994e0de82b3d54f13ec073cfa7a335..26195971e6446e1ca9559f443ed51273aaec3d40 100644
--- a/gcc/testsuite/gcc.target/aarch64/struct_cpy.c
+++ b/gcc/testsuite/gcc.target/aarch64/struct_cpy.c
@@ -46,22 +46,22 @@ struct struct16 foo16 = {
   volatile struct struct##x var##x = foo##x; \
 }
 
-FUN(1);
-FUN(2);
-FUN(3);
-FUN(4);
-FUN(5);
-FUN(6);
-FUN(7);
-FUN(8);
-FUN(9);
-FUN(10);
-FUN(11);
-FUN(12);
-FUN(13);
-FUN(14);
-FUN(15);
-FUN(16);
+FUN(1)
+FUN(2)
+FUN(3)
+FUN(4)
+FUN(5)
+FUN(6)
+FUN(7)
+FUN(8)
+FUN(9)
+FUN(10)
+FUN(11)
+FUN(12)
+FUN(13)
+FUN(14)
+FUN(15)
+FUN(16)
 
 /* { dg-final { scan-assembler-times {ldr\s} 18 } } */
 /* { dg-final { scan-assembler-times {ldrb} 4 } } */

Reply via email to