From 993243b2707865492e215157d64210dc01511438 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 8 Apr 2007 08:02:39 +0000 Subject: [PATCH] this xform is correct, not an xfail git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35766 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../InstCombine/2007-03-19-BadTruncChangePR1261.ll | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test/Transforms/InstCombine/2007-03-19-BadTruncChangePR1261.ll b/test/Transforms/InstCombine/2007-03-19-BadTruncChangePR1261.ll index 67aeed92c6d..da58dec1dca 100644 --- a/test/Transforms/InstCombine/2007-03-19-BadTruncChangePR1261.ll +++ b/test/Transforms/InstCombine/2007-03-19-BadTruncChangePR1261.ll @@ -1,10 +1,7 @@ -; For PR1261. Before bit accurate type support in InstCombine, this would -; turn the sext into a zext. -; RUN: llvm-as %s -o - | opt -instcombine | llvm-dis | grep sext -; XFAIL: * +; RUN: llvm-as %s -o - | opt -instcombine | llvm-dis | grep zext +; PR1261. define i16 @test(i31 %zzz) { -entry: %A = sext i31 %zzz to i32 %B = add i32 %A, 16384 %C = lshr i32 %B, 15