summaryrefslogtreecommitdiff
path: root/test/CodeGen/CellSPU/crash.ll
blob: cc2ab71db3b3520b409d6c14b56bdc22e66925c2 (plain)
1
2
3
4
5
6
7
8
; RUN: llc %s -march=cellspu -o -
declare i8 @return_i8()
declare i16 @return_i16()
define void @testfunc() {
 %rv1 = call i8 @return_i8()
 %rv2 = call i16 @return_i16()
 ret void
}