mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
c2a94da313
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123364 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
203 B
LLVM
12 lines
203 B
LLVM
; RUN: llvm-link %s %p/unnamed-addr2-b.ll -S -o - | FileCheck %s
|
|
|
|
define i32 @bar() {
|
|
entry:
|
|
%call = tail call i32 @foo()
|
|
ret i32 %call
|
|
}
|
|
|
|
declare i32 @foo()
|
|
|
|
; CHECK: define unnamed_addr i32 @foo()
|