[llvm] r224016 - InstSimplify: Remove usesless %a parameter from tests
David Majnemer
david.majnemer at gmail.com
Thu Dec 11 04:56:17 PST 2014
Author: majnemer
Date: Thu Dec 11 06:56:17 2014
New Revision: 224016
URL: http://llvm.org/viewvc/llvm-project?rev=224016&view=rev
Log:
InstSimplify: Remove usesless %a parameter from tests
No functional change intended.
Modified:
llvm/trunk/test/Transforms/InstSimplify/undef.ll
Modified: llvm/trunk/test/Transforms/InstSimplify/undef.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstSimplify/undef.ll?rev=224016&r1=224015&r2=224016&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstSimplify/undef.ll (original)
+++ llvm/trunk/test/Transforms/InstSimplify/undef.ll Thu Dec 11 06:56:17 2014
@@ -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
}
More information about the llvm-commits
mailing list