1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-04-16 20:40:16 +00:00

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
This commit is contained in:
Duncan Sands 2010-12-22 17:08:04 +00:00
parent df561e0234
commit b3898af89f

@ -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
}