blob: 11d02dabbc30be81aca6f9444eafa7bef36cb5e3 [file] [log] [blame]
Evan Chengb1712452010-01-27 06:25:16 +00001; RUN: llc < %s -march=x86 -asm-verbose=false | FileCheck %s
2; RUN: llc < %s -march=x86-64 -asm-verbose=false | FileCheck %s
3
4define void @bar(i32 %x) nounwind ssp {
5entry:
6; CHECK: bar:
Chandler Carruth6f034332010-01-27 10:36:15 +00007; CHECK: jmp {{_?}}foo
Evan Chengb1712452010-01-27 06:25:16 +00008 tail call void @foo() nounwind
9 ret void
10}
11
12declare void @foo()