]> granicus.if.org Git - clang/commitdiff
Fix silly mistake in test.
authorEli Friedman <eli.friedman@gmail.com>
Sat, 28 Mar 2009 03:14:28 +0000 (03:14 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Sat, 28 Mar 2009 03:14:28 +0000 (03:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67897 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/vector.c

index a5c4c99e0ef69967f6aa1072e66585ae70f899e1..2e753b42c4d70293c4d39dfd74d2fbb9bc61aaad 100644 (file)
@@ -9,5 +9,5 @@ void f()
 __v4hi x = {1,2,3};
 __v4hi y = {1,2,3,4};
 
-typedef int x __attribute((vector_size(16)));
-int a() { x b; return b[2LL]; }
+typedef int vty __attribute((vector_size(16)));
+int a() { vty b; return b[2LL]; }