guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 25/86: Remove needless PUBLIC/HIDDEN definitions


From: Andy Wingo
Subject: [Guile-commits] 25/86: Remove needless PUBLIC/HIDDEN definitions
Date: Wed, 3 Apr 2019 11:38:52 -0400 (EDT)

wingo pushed a commit to branch lightening
in repository guile.

commit 447fccfed6f914cf4df8fe873677ec27cc99f791
Author: Andy Wingo <address@hidden>
Date:   Wed Oct 31 22:05:09 2018 +0100

    Remove needless PUBLIC/HIDDEN definitions
---
 jit/private.h | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/jit/private.h b/jit/private.h
index e0af19c..fb531da 100644
--- a/jit/private.h
+++ b/jit/private.h
@@ -32,19 +32,10 @@
 #  define maybe_unused         __attribute__ ((unused))
 #  define unlikely(exprn)      __builtin_expect(!!(exprn), 0)
 #  define likely(exprn)                __builtin_expect(!!(exprn), 1)
-#  if (__GNUC__ >= 4)
-#    define PUBLIC             __attribute__ ((visibility("default")))
-#    define HIDDEN             __attribute__ ((visibility("hidden")))
-#  else
-#    define PUBLIC             /**/
-#    define HIDDEN             /**/
-#  endif
 #else
 #  define maybe_unused         /**/
 #  define unlikely(exprn)      exprn
 #  define likely(exprn)                exprn
-#  define PUBLIC               /**/
-#  define HIDDEN               /**/
 #endif
 
 #define rc(value)              jit_class_##value



reply via email to

[Prev in Thread] Current Thread [Next in Thread]