libjit
[Top][All Lists]
Advanced

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

[Libjit] [PATCH 3/3] Remove reference to __CYGWIN32__


From: Ken Brown
Subject: [Libjit] [PATCH 3/3] Remove reference to __CYGWIN32__
Date: Mon, 27 Aug 2018 16:27:21 -0400

This is deprecated and unnecessary.  It could only cause confusion,
since readers of the code might think it's intended to distinguish
32-bit Cygwin from 64-bit Cygwin.
---
 jit/jit-apply-x86.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/jit/jit-apply-x86.h b/jit/jit-apply-x86.h
index 1e3f168..2912e95 100644
--- a/jit/jit-apply-x86.h
+++ b/jit/jit-apply-x86.h
@@ -34,8 +34,7 @@
 
 #if defined(__GNUC__)
 
-#if !defined(__CYGWIN__) && !defined(__CYGWIN32__) && \
-       !defined(_WIN32) && !defined(WIN32)
+#if !defined(__CYGWIN__)  && !defined(_WIN32) && !defined(WIN32)
 
 /* Mac OS X prefixes static symbols with an underscore, and external symbol
    references are late-bound through a PIC stub by the dynamic linker */
-- 
2.17.0




reply via email to

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