[cfe-commits] r147112 - /cfe/trunk/test/CodeGen/compound-literal.c
Eli Friedman
eli.friedman at gmail.com
Wed Dec 21 16:06:39 PST 2011
Author: efriedma
Date: Wed Dec 21 18:06:39 2011
New Revision: 147112
URL: http://llvm.org/viewvc/llvm-project?rev=147112&view=rev
Log:
Fix a silly mistake in this test that somehow slipped into my last commit.
Modified:
cfe/trunk/test/CodeGen/compound-literal.c
Modified: cfe/trunk/test/CodeGen/compound-literal.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/compound-literal.c?rev=147112&r1=147111&r2=147112&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/compound-literal.c (original)
+++ cfe/trunk/test/CodeGen/compound-literal.c Wed Dec 21 18:06:39 2011
@@ -4,7 +4,7 @@
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};
More information about the cfe-commits
mailing list