diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-12-22 00:06:39 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-12-22 00:06:39 +0000 |
commit | 1148b0f13cac653d97c9c84c768f0a75317eba3d (patch) | |
tree | f23a1a8351d8b0aedeabfcb9e2a4d8210df3fdbb | |
parent | 5c9cd7a8a3e823f8ee72592f95ba1a406dfc7e6a (diff) | |
download | bcm5719-llvm-1148b0f13cac653d97c9c84c768f0a75317eba3d.tar.gz bcm5719-llvm-1148b0f13cac653d97c9c84c768f0a75317eba3d.zip |
Fix a silly mistake in this test that somehow slipped into my last commit.
llvm-svn: 147112
-rw-r--r-- | clang/test/CodeGen/compound-literal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/compound-literal.c b/clang/test/CodeGen/compound-literal.c index 8208513c7cf..969c5affe0b 100644 --- a/clang/test/CodeGen/compound-literal.c +++ b/clang/test/CodeGen/compound-literal.c @@ -4,7 +4,7 @@ int* a = &(int){1}; struct s {int a, b, c;} * b = &(struct s) {1, 2, 3}; _Complex double * x = &(_Complex double){1.0f}; typedef int v4i32 __attribute((vector_size(16))); -v4i32 *x = &(v4i32){1,2,3,4}; +v4i32 *y = &(v4i32){1,2,3,4}; void xxx() { int* a = &(int){1}; |