Let that which does not matter truly slide.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Tue, 6 Apr 2010 23:44:44 +0000 (23:44 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Tue, 6 Apr 2010 23:44:44 +0000 (23:44 +0000)
This test only cares about alignment, so don't test for other cruft.
An upcoming llvm-gcc patch needs this.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100584 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC/2009-12-07-BitFieldAlignment.c

index a8312a5fd8a9c54b756b00ecad8ab540e7d57475..02ff8bce1821ce113e69277d735bc70bc0f11d2c 100644 (file)
@@ -9,7 +9,7 @@ struct S {
 };
 
 void f0(struct S *a) {
-// CHECK: %3 = load i32* %2, align 4
-// CHECK: store i32 %4, i32* %2, align 4
+// CHECK: load {{.*}}, align 4
+// CHECK: store {{.*}}, align 4
   a->e = 0;
 }