summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2015-12-01 23:07:08 +0000
committerJose Fonseca <jfonseca@vmware.com>2015-12-02 07:51:04 +0000
commit56aff6bb4eafe35ba301f5d60027377abc4cfd9f (patch)
treeab4fb5d62248754462ebfc00e0197b66bec11817 /src/util
parent51564f04b77e6d29a888a4fbd83d96de062ac634 (diff)
downloadexternal_mesa3d-56aff6bb4eafe35ba301f5d60027377abc4cfd9f.zip
external_mesa3d-56aff6bb4eafe35ba301f5d60027377abc4cfd9f.tar.gz
external_mesa3d-56aff6bb4eafe35ba301f5d60027377abc4cfd9f.tar.bz2
Remove Sun CC specific code.
Reviewed-by: Matt Turner <mattst88@gmail.com> Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/macros.h b/src/util/macros.h
index 5014b91..0c8958f 100644
--- a/src/util/macros.h
+++ b/src/util/macros.h
@@ -186,7 +186,7 @@ do { \
* inline a static function that we later use in an alias. - ajax
*/
#ifndef PUBLIC
-# if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
+# if defined(__GNUC__)
# define PUBLIC __attribute__((visibility("default")))
# define USED __attribute__((used))
# elif defined(_MSC_VER)