mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
03e6a05f0f
llvm-svn: 78042
9 lines
184 B
C
9 lines
184 B
C
// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llvm-dis | \
|
|
// RUN: grep llvm.used | grep foo | grep X
|
|
|
|
int X __attribute__((used));
|
|
int Y;
|
|
|
|
__attribute__((used)) void foo() {}
|
|
|