mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-30 17:33:24 +00:00
10 lines
195 B
LLVM
10 lines
195 B
LLVM
|
; RUN: llc < %s -O0 -mtriple=thumbv7-apple-darwin
|
||
|
; rdar://9515076
|
||
|
; (Make sure this doesn't crash.)
|
||
|
|
||
|
define i32 @test(i32 %i) {
|
||
|
%t = trunc i32 %1 to i4
|
||
|
%r = sext i4 %t to i32
|
||
|
ret i32 %r
|
||
|
}
|