summaryrefslogtreecommitdiff
path: root/test/FrontendC/2005-12-04-AttributeUsed.c
blob: f47e977f48611091976501c0e8e815a8cb1bc008 (plain)
1
2
3
4
5
6
7
8
// RUN: %llvmgcc %s -S -o - | llvm-as | llvm-dis | \
// RUN:   grep llvm.used | grep foo | grep X

int X __attribute__((used));
int Y;

__attribute__((used)) void foo() {}