aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGen/vector.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/vector.c b/test/CodeGen/vector.c
index a5c4c99e0e..2e753b42c4 100644
--- a/test/CodeGen/vector.c
+++ b/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]; }