mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
cefc38659a
externally visable, create a local symbol to use in the CFE. If not, use the function label itself. Fixes PR10420. llvm-svn: 136716
22 lines
531 B
LLVM
22 lines
531 B
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-macosx -disable-cfi | FileCheck %s
|
|
|
|
define private void @foo() {
|
|
ret void
|
|
}
|
|
|
|
define void @bar() {
|
|
call void @foo()
|
|
ret void;
|
|
}
|
|
|
|
; CHECK: _bar: ## @bar
|
|
; CHECK-NEXT: Ltmp2:
|
|
|
|
; CHECK: Ltmp12:
|
|
; CHECK-NEXT: Ltmp13 = L_foo-Ltmp12 ## FDE initial location
|
|
; CHECK-NEXT: .quad Ltmp13
|
|
|
|
; CHECK: Ltmp19:
|
|
; CHECK-NEXT: Ltmp20 = Ltmp2-Ltmp19 ## FDE initial location
|
|
; CHECK-NEXT: .quad Ltmp20
|