mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
4572ce85b0
llvm-svn: 33296
8 lines
172 B
C
8 lines
172 B
C
// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llvm-dis | grep llvm.used | grep foo | grep X
|
|
|
|
int X __attribute__((used));
|
|
int Y;
|
|
|
|
__attribute__((used)) void foo() {}
|
|
|