Evan Cheng | b171245 | 2010-01-27 06:25:16 +0000 | [diff] [blame^] | 1 | ; RUN: llc < %s -march=x86 -asm-verbose=false | FileCheck %s |
2 | ; RUN: llc < %s -march=x86-64 -asm-verbose=false | FileCheck %s | ||||
3 | |||||
4 | define void @bar(i32 %x) nounwind ssp { | ||||
5 | entry: | ||||
6 | ; CHECK: bar: | ||||
7 | ; CHECK: jmp _foo | ||||
8 | tail call void @foo() nounwind | ||||
9 | ret void | ||||
10 | } | ||||
11 | |||||
12 | declare void @foo() |