Fix silly mistake in test.

llvm-svn: 67897
This commit is contained in:
Eli Friedman 2009-03-28 03:14:28 +00:00
parent 9127aa1caf
commit 7c7a0e86ae
1 changed files with 2 additions and 2 deletions

View 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]; }