From: Nuno Lopes Date: Tue, 8 May 2012 01:54:53 +0000 (+0000) Subject: hopefully unbreak some buildbots X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ccf0043c67cf6e103c44cd7629efb812daaa877;p=clang hopefully unbreak some buildbots git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156357 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; }