Author: nlopes
Date: Mon May 7 20:54:53 2012
New Revision: 156357
URL: http://llvm.org/viewvc/llvm-project?rev=156357&view=rev
Log:
hopefully unbreak some buildbots
Modified:
cfe/trunk/test/CodeGen/catch-undef-behavior.c
Modified: cfe/trunk/test/CodeGen/catch-undef-behavior.c
URL:
http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/catch-undef-behavior.c?rev=156357&r1=156356&r2=156357&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/catch-undef-behavior.c (original)
+++ cfe/trunk/test/CodeGen/catch-undef-behavior.c Mon May 7 20:54:53 2012
@@ -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;
}
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits