From: Duncan Sands Date: Wed, 22 Dec 2010 17:08:04 +0000 (+0000) Subject: Make this test not depend on how the variable is named. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b3898af89fb4cb8146076e1a8e0bd5ecea4f5944;p=oota-llvm.git Make this test not depend on how the variable is named. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122413 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/select.ll b/test/Transforms/InstCombine/select.ll index fecc9d1c3fa..772299c29f9 100644 --- a/test/Transforms/InstCombine/select.ll +++ b/test/Transforms/InstCombine/select.ll @@ -581,6 +581,6 @@ define i32 @test41(i1 %cond, i32 %x, i32 %y) { %r = and i32 %x, %s ret i32 %r ; CHECK: @test41 -; CHECK: %r = and i32 %x, %y -; CHECK: ret i32 %r +; CHECK-NEXT: and i32 %x, %y +; CHECK-NEXT: ret i32 }