diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2011-11-23 02:12:00 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2011-11-23 02:12:00 +0000 |
commit | 1a3246ad0a4d65dbfe2c70f0431082b2296ee48f (patch) | |
tree | f89cf36a610ffa0f4fadc86d22719b1203894a91 | |
parent | 7401cf524cdb7aad4951d8727d280f8b271af5a2 (diff) |
Don't check alignment, it's irrelevant to this test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145093 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/compound-literals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/compound-literals.cpp b/test/CodeGenCXX/compound-literals.cpp index aa9ae3cacf..17a31149e1 100644 --- a/test/CodeGenCXX/compound-literals.cpp +++ b/test/CodeGenCXX/compound-literals.cpp @@ -41,4 +41,4 @@ int g() { struct Z { int i[3]; }; int *p = (Z){ {1, 2, 3} }.i; // CHECK: define {{.*}}__cxx_global_var_init() -// CHECK: store i32* getelementptr inbounds (%struct.Z* @.compoundliteral, i32 0, i32 0, i32 0), i32** @p, align 8 +// CHECK: store i32* getelementptr inbounds (%struct.Z* @.compoundliteral, i32 0, i32 0, i32 0), i32** @p |