blob: f1eb1529c12340e9794a64484c363d3408e018a4 [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:
7; CHECK: jmp _foo
8 tail call void @foo() nounwind
9 ret void
10}
11
12declare void @foo()