blob: f245168a8e305763832bc7429daed3eaef75eecf [file] [log] [blame]
Chad Rosier0a63b6a2012-11-17 00:42:06 +00001; RUN: llc < %s -O0 -verify-machineinstrs -mtriple=thumbv7-apple-darwin
Eli Friedmana4d487f2011-05-27 18:02:04 +00002; rdar://9515076
3; (Make sure this doesn't crash.)
4
5define i32 @test(i32 %i) {
Eli Friedman45c4c4f2011-05-27 18:14:28 +00006 %t = trunc i32 %i to i4
Eli Friedmana4d487f2011-05-27 18:02:04 +00007 %r = sext i4 %t to i32
8 ret i32 %r
9}