1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

Add test case for PR1261, currently XFAILed.

llvm-svn: 35192
This commit is contained in:
Reid Spencer 2007-03-19 23:28:16 +00:00
parent 37a5818ca9
commit 86f1c2f59d

View File

@ -0,0 +1,14 @@
; 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 &&
; RUN: llvm-as %s -o - | opt -instcombine | llvm-dis | not grep zext
; XFAIL: *
define i16 @test(i31 %zzz) {
entry:
%A = sext i31 %zzz to i32
%B = add i32 %A, 16384
%C = lshr i32 %B, 15
%D = trunc i32 %C to i16
ret i16 %D
}