mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
9e3e730417
r182877 broke MCJIT tests on ARM and r182937 was working around another failure by r182877. This should make the ARM bots green. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182960 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
234 B
LLVM
10 lines
234 B
LLVM
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort -mtriple=thumbv7-apple-darwin
|
|
; rdar://9515076
|
|
; (Make sure this doesn't crash.)
|
|
|
|
define i32 @test(i32 %i) {
|
|
%t = trunc i32 %i to i4
|
|
%r = sext i4 %t to i32
|
|
ret i32 %r
|
|
}
|