Silence a warning. Should we turn this into configure-time check?

llvm-svn: 46251
This commit is contained in:
Anton Korobeynikov 2008-01-22 11:01:23 +00:00
parent 010bd77372
commit 427f3167bc
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
// The VISIBILITY_HIDDEN macro, used for marking classes with the GCC-specific
// visibility("hidden") attribute.
#if __GNUC__ >= 4
#if (__GNUC__ >= 4) && !defined(__MINGW32__)
#define VISIBILITY_HIDDEN __attribute__ ((visibility("hidden")))
#else
#define VISIBILITY_HIDDEN