mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 03:07:06 +00:00
13 lines
170 B
C
13 lines
170 B
C
|
// RUN: %llvmgcc -S %s -o - | grep call | not grep foo
|
||
|
|
||
|
void bar() {
|
||
|
}
|
||
|
|
||
|
inline void __attribute__((__always_inline__)) foo() {
|
||
|
bar();
|
||
|
}
|
||
|
|
||
|
void i_want_bar() {
|
||
|
foo();
|
||
|
}
|