You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
393 B
19 lines
393 B
// RUN: %clang_cc1 -emit-llvm -o %t %s
|
|
// RUN: grep '@llvm.used = .*@a0' %t
|
|
// RUN: grep '@llvm.used = .*@g0' %t
|
|
// RUN: grep '@llvm.used = .*@f0' %t
|
|
// RUN: grep '@llvm.used = .*@f1.l0' %t
|
|
|
|
|
|
int g0 __attribute__((used));
|
|
|
|
static void __attribute__((used)) f0(void) {
|
|
}
|
|
|
|
void f1() {
|
|
static int l0 __attribute__((used)) = 5225;
|
|
}
|
|
|
|
__attribute__((used)) int a0;
|
|
void pr27535() { (void)a0; }
|