mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
8 lines
148 B
C
8 lines
148 B
C
|
// RUN: %llvmgcc %s -S -o - | llvm-as | llvm-dis | grep llvm.annotation
|
||
|
|
||
|
int main() {
|
||
|
int x = 0;
|
||
|
return __builtin_annotation(x, "annotate");
|
||
|
}
|
||
|
|