blob: 4c4f19c0f4f258af3598c9a3bb94d5fd7010a764 (
plain)
1
2
3
4
5
6
7
8
9
10
|
; RUN: llc < %s -march=arm
; PR4716
define void @_start() nounwind naked {
entry:
tail call void @exit(i32 undef) noreturn nounwind
unreachable
}
declare void @exit(i32) noreturn nounwind
|