InstSimplify: Remove usesless %a parameter from tests

No functional change intended.

llvm-svn: 224016
This commit is contained in:
David Majnemer 2014-12-11 12:56:17 +00:00
parent fffb6996c9
commit f532fcb889
1 changed files with 4 additions and 4 deletions

View File

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