From 7c7a0e86aed7354c1a59c611c079e8053c7b8d12 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Sat, 28 Mar 2009 03:14:28 +0000 Subject: [PATCH] Fix silly mistake in test. llvm-svn: 67897 --- clang/test/CodeGen/vector.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/test/CodeGen/vector.c b/clang/test/CodeGen/vector.c index a5c4c99e0ef6..2e753b42c4d7 100644 --- a/clang/test/CodeGen/vector.c +++ b/clang/test/CodeGen/vector.c @@ -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]; }