Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
      2 
      3 // CHECK: hidden global
      4 int X __attribute__ ((__visibility__ ("hidden"))) = 123;
      5