1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
9 lines
248 B
C++
9 lines
248 B
C++
// RUN: %clang_cc1 %s -fvisibility hidden -emit-llvm -o - | FileCheck %s
|
|
|
|
namespace std __attribute__ ((__visibility__ ("default"))) {}
|
|
#pragma GCC visibility push(default)
|
|
void foo() {
|
|
}
|
|
#pragma GCC visibility pop
|
|
// CHECK: define void @_Z3foov()
|