From d2a0896832a51a42dca2395c54b70330e9e9af18 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 24 Jul 2003 19:42:28 +0000 Subject: [PATCH] Modernize testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7297 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/setcc-strength-reduce.ll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }