diff --git a/test/Transforms/InstCombine/setcc-strength-reduce.ll b/test/Transforms/InstCombine/setcc-strength-reduce.ll index 17ad7dc2e69..36114cab79a 100644 --- a/test/Transforms/InstCombine/setcc-strength-reduce.ll +++ b/test/Transforms/InstCombine/setcc-strength-reduce.ll @@ -5,17 +5,17 @@ ; RUN: as < %s | opt -instcombine | dis | grep -v seteq | grep -v setne | not grep set -bool "test1"(uint %A) { +bool %test1(uint %A) { %B = setge uint %A, 1 ; setne %A, 0 ret bool %B } -bool "test2"(uint %A) { +bool %test2(uint %A) { %B = setgt uint %A, 0 ; setne %A, 0 ret bool %B } -bool "test3"(sbyte %A) { +bool %test3(sbyte %A) { %B = setge sbyte %A, -127 ; setne %A, -128 ret bool %B }