[cfe-commits] r145093 - /cfe/trunk/test/CodeGenCXX/compound-literals.cpp
Richard Smith
richard-llvm at metafoo.co.uk
Tue Nov 22 18:12:00 PST 2011
Author: rsmith
Date: Tue Nov 22 20:12:00 2011
New Revision: 145093
URL: http://llvm.org/viewvc/llvm-project?rev=145093&view=rev
Log:
Don't check alignment, it's irrelevant to this test.
Modified:
cfe/trunk/test/CodeGenCXX/compound-literals.cpp
Modified: cfe/trunk/test/CodeGenCXX/compound-literals.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/compound-literals.cpp?rev=145093&r1=145092&r2=145093&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/compound-literals.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/compound-literals.cpp Tue Nov 22 20:12:00 2011
@@ -41,4 +41,4 @@
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
More information about the cfe-commits
mailing list