aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2005-12-04-AttributeUsed.c
blob: a3da1c3e6411fb55148257f60a00ea1255472d04 (plain)
1
2
3
4
5
6
7
// 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() {}