]> gcc.gnu.org Git - gcc.git/commitdiff
Added missing semicolon at end of union.
authorJoern Rennecke <amylaar@gcc.gnu.org>
Thu, 26 Jun 2003 13:10:55 +0000 (14:10 +0100)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Thu, 26 Jun 2003 13:10:55 +0000 (14:10 +0100)
From-SVN: r68529

gcc/testsuite/gcc.c-torture/execute/simd-4.c

index 3907375ea7eae7f554c0f12ea5bc9b48ea6c415c..0d4481f7cef302239fb8ef1d526af45932e1a577 100644 (file)
@@ -9,7 +9,7 @@ __ev_convert_s64 (v2si a)
 
 int main()
 {
-  union { long long ll; int i[2] } endianness_test;
+  union { long long ll; int i[2]; } endianness_test;
   endianness_test.ll = 1;
   int little_endian = endianness_test.i[0];
   s64 = __ev_convert_s64 ((v2si){1,0xffffffff});
This page took 0.067658 seconds and 5 git commands to generate.