blob: aa06299288469c59f918ddbba05e51e5f3c0f85e [file] [log] [blame]
Eli Friedmana4d487f2011-05-27 18:02:04 +00001; RUN: llc < %s -O0 -mtriple=thumbv7-apple-darwin
2; 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}