mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
9 lines
173 B
C
9 lines
173 B
C
|
// RUN: %llvmgcc %s -S -o - | llvm-as | llvm-dis | grep llvm.used | grep foo | grep X
|
||
|
|
||
|
int X __attribute__((used));
|
||
|
int Y;
|
||
|
|
||
|
void foo() __attribute__((used));
|
||
|
|
||
|
void foo() {}
|