From: David Majnemer Date: Thu, 11 Dec 2014 12:56:17 +0000 (+0000) Subject: InstSimplify: Remove usesless %a parameter from tests X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f532fcb889a801fd50f53f0da79c913ee32f876d;p=platform%2Fupstream%2Fllvm.git InstSimplify: Remove usesless %a parameter from tests No functional change intended. llvm-svn: 224016 --- diff --git a/llvm/test/Transforms/InstSimplify/undef.ll b/llvm/test/Transforms/InstSimplify/undef.ll index d72ff85..70a07b8 100644 --- a/llvm/test/Transforms/InstSimplify/undef.ll +++ b/llvm/test/Transforms/InstSimplify/undef.ll @@ -191,28 +191,28 @@ define i32 @test23(i32 %a) { ; CHECK-LABEL: @test24 ; CHECK: ret i32 undef -define i32 @test24(i32 %a) { +define i32 @test24() { %b = udiv i32 undef, 0 ret i32 %b } ; CHECK-LABEL: @test25 ; CHECK: ret i32 undef -define i32 @test25(i32 %a) { +define i32 @test25() { %b = lshr i32 0, undef ret i32 %b } ; CHECK-LABEL: @test26 ; CHECK: ret i32 undef -define i32 @test26(i32 %a) { +define i32 @test26() { %b = ashr i32 0, undef ret i32 %b } ; CHECK-LABEL: @test27 ; CHECK: ret i32 undef -define i32 @test27(i32 %a) { +define i32 @test27() { %b = shl i32 0, undef ret i32 %b }