mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Add test case for PR1261, currently XFAILed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35192 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2e8f27d0bd
commit
1e8ae156e0
@ -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
|
||||
}
|
Loading…
Reference in New Issue
Block a user