mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
16 lines
298 B
LLVM
16 lines
298 B
LLVM
|
; RUN: echo "%X = linkonce global int 5 implementation linkonce int %foo() { ret int 7 }" | as > Output/%s.1.bc
|
||
|
; RUN: as < %s > Output/%s.2.bc
|
||
|
; RUN: link Output/%s.[12].bc
|
||
|
%X = external global int
|
||
|
|
||
|
implementation
|
||
|
|
||
|
declare int %foo()
|
||
|
|
||
|
void %bar() {
|
||
|
load int* %X
|
||
|
call int %foo()
|
||
|
ret void
|
||
|
}
|
||
|
|