aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuno Lopes <nunoplopes@sapo.pt>2012-05-08 01:54:53 +0000
committerNuno Lopes <nunoplopes@sapo.pt>2012-05-08 01:54:53 +0000
commit4ccf0043c67cf6e103c44cd7629efb812daaa877 (patch)
treecfca9cdcfbdfdef42f80c78c11b75fdc94be89e7
parentae5ac1f5bdbcc5190b3867d16d0f41c2b10e0c65 (diff)
hopefully unbreak some buildbots
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156357 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/catch-undef-behavior.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/catch-undef-behavior.c b/test/CodeGen/catch-undef-behavior.c
index c2ad7c2672..ee0b6586dd 100644
--- a/test/CodeGen/catch-undef-behavior.c
+++ b/test/CodeGen/catch-undef-behavior.c
@@ -5,13 +5,13 @@
void foo() {
union { int i; } u;
// CHECK: objectsize
- // CHECK-NEXT: icmp uge
+ // CHECK: icmp uge
u.i=1;
}
// CHECK: @bar
int bar(int *a) {
// CHECK: objectsize
- // CHECK-NEXT: icmp uge
+ // CHECK: icmp uge
return *a;
}