aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Transforms/InstCombine/shift.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/InstCombine/shift.ll b/test/Transforms/InstCombine/shift.ll
index c6b65174f6..20bf9116e2 100644
--- a/test/Transforms/InstCombine/shift.ll
+++ b/test/Transforms/InstCombine/shift.ll
@@ -28,8 +28,8 @@ int "test4"(ubyte %A) {
ret int %B
}
-int "test5"(int %A) {
- %B = shr int %A, ubyte 32 ;; shift all bits out
- ret int %B
+uint "test5"(uint %A) {
+ %B = shr uint %A, ubyte 32 ;; shift all bits out
+ ret uint %B
}