mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 21:05:16 +00:00
10 lines
197 B
C
10 lines
197 B
C
|
// RUN: %llvmgcc %s -S -o - | gccas &&
|
||
|
// RUN: %llvmgcc %s -S -o - | gccas | llc &&
|
||
|
// RUN: %llvmgcc %s -S -o - | gccas | llc | not grep _foo2
|
||
|
|
||
|
void foo() __asm__("foo2");
|
||
|
|
||
|
void bar() {
|
||
|
foo();
|
||
|
}
|