Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git] / test / FrontendC / 2005-12-04-AttributeUsed.c
blobf47e977f48611091976501c0e8e815a8cb1bc008
1 // RUN: %llvmgcc %s -S -o - | llvm-as | llvm-dis | \
2 // RUN: grep llvm.used | grep foo | grep X
4 int X __attribute__((used));
5 int Y;
7 __attribute__((used)) void foo() {}