1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/FrontendC/2005-12-04-AttributeUsed.c

9 lines
184 B
C
Raw Normal View History

// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llvm-dis | \
// RUN: grep llvm.used | grep foo | grep X
2005-12-05 05:48:12 +01:00
int X __attribute__((used));
int Y;
__attribute__((used)) void foo() {}
2005-12-05 05:48:12 +01:00