Commit 4c43bcb0 by Joern Rennecke

Added missing semicolon at end of union.

From-SVN: r68529
parent caf7f21a
...@@ -9,7 +9,7 @@ __ev_convert_s64 (v2si a) ...@@ -9,7 +9,7 @@ __ev_convert_s64 (v2si a)
int main() int main()
{ {
union { long long ll; int i[2] } endianness_test; union { long long ll; int i[2]; } endianness_test;
endianness_test.ll = 1; endianness_test.ll = 1;
int little_endian = endianness_test.i[0]; int little_endian = endianness_test.i[0];
s64 = __ev_convert_s64 ((v2si){1,0xffffffff}); s64 = __ev_convert_s64 ((v2si){1,0xffffffff});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment