diff options
author | Chris Lattner <sabre@nondot.org> | 2006-08-27 12:54:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-08-27 12:54:02 +0000 |
commit | a4f0b3a084d120cfc5b5bb06f64b222f5cb72740 (patch) | |
tree | a5d892ccf293725257cd4211c46a0527ec8898f1 /include | |
parent | c9d94d12900bd0d2bd482ef31f8f1deb3ffafa23 (diff) | |
download | external_llvm-a4f0b3a084d120cfc5b5bb06f64b222f5cb72740.zip external_llvm-a4f0b3a084d120cfc5b5bb06f64b222f5cb72740.tar.gz external_llvm-a4f0b3a084d120cfc5b5bb06f64b222f5cb72740.tar.bz2 |
s|llvm/Support/Visibility.h|llvm/Support/Compiler.h|
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29911 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/Visibility.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/include/llvm/Support/Visibility.h b/include/llvm/Support/Visibility.h deleted file mode 100644 index eb0c649..0000000 --- a/include/llvm/Support/Visibility.h +++ /dev/null @@ -1,23 +0,0 @@ -//===-- 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 |