mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 03:46:07 +00:00
5 lines
135 B
C
5 lines
135 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK: hidden global
|
|
int X __attribute__ ((__visibility__ ("hidden"))) = 123;
|