[cfe-commits] r156357 - /cfe/trunk/test/CodeGen/catch-undef-behavior.c
Nuno Lopes
nunoplopes at sapo.pt
Mon May 7 18:54:54 PDT 2012
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;
}
More information about the cfe-commits
mailing list