blob: d606877673dc9143a2780de90a619f5a2266b99e [file] [log] [blame]
Derek Schuffbd7c6e52013-05-14 16:26:38 +00001; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort -mtriple=thumbv7-apple-darwin
JF Bastien18db1f22013-06-14 02:49:43 +00002; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort -mtriple=thumbv7-linux-gnueabi
Eli Friedmanfe84bd62011-05-27 18:02:04 +00003; rdar://9515076
4; (Make sure this doesn't crash.)
5
6define i32 @test(i32 %i) {
Eli Friedman3a8d9622011-05-27 18:14:28 +00007 %t = trunc i32 %i to i4
Eli Friedmanfe84bd62011-05-27 18:02:04 +00008 %r = sext i4 %t to i32
9 ret i32 %r
10}