1 // RUN: %clang_cc1 -emit-llvm -triple x86_64 %s -o - | FileCheck %s --check-prefixes=CHECK,CUSED
2 // RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin %s -o - | FileCheck %s --check-prefixes=CHECK,USED
5 // CUSED: @llvm.compiler.used =
11 int g0
__attribute__((used
));
13 static void __attribute__((used
)) f0(void) {
17 static int l0
__attribute__((used
)) = 5225;
20 __attribute__((used
)) int a0
;
21 void pr27535(void) { (void)a0
; }