mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +00:00
Add support for hidden visibility
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28968 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b916ba1fe4
commit
c521409d4c
23
include/llvm/Support/Visibility.h
Normal file
23
include/llvm/Support/Visibility.h
Normal file
@ -0,0 +1,23 @@
|
||||
//===-- llvm/Support/Visibility.h - visibility(hidden) support --*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file was developed by Chris Lattner and is distributed under
|
||||
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file defines the VISIBILITY_HIDDEN macro, used for marking classes with
|
||||
// the GCC-specific visibility("hidden") attribute.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef VISIBILITY_HIDDEN
|
||||
|
||||
#if __GNUC__ >= 4
|
||||
#define VISIBILITY_HIDDEN __attribute__ ((visibility("hidden")))
|
||||
#else
|
||||
#define VISIBILITY_HIDDEN
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user