[libc-commits] [libc] 5d679fc - [libc] Clean up Windows macros

Caitlyn Cano via libc-commits libc-commits at lists.llvm.org
Fri Jul 23 14:12:50 PDT 2021


Author: Caitlyn Cano
Date: 2021-07-23T21:12:36Z
New Revision: 5d679fc502c78eba4758d034cdffc44bc6d48efb

URL: https://github.com/llvm/llvm-project/commit/5d679fc502c78eba4758d034cdffc44bc6d48efb
DIFF: https://github.com/llvm/llvm-project/commit/5d679fc502c78eba4758d034cdffc44bc6d48efb.diff

LOG: [libc] Clean up Windows macros

This clean-up removes checks for _WIN64, as the _WIN32 macro returns 1
whenever the compilation targe is 32- or 64-bit ARM.

Reviewed By: aeubanks

Differential Revision: https://reviews.llvm.org/D106706

Added: 
    

Modified: 
    libc/utils/FPUtil/PlatformDefs.h
    libc/utils/FPUtil/TestHelpers.cpp
    libc/utils/UnitTest/PlatformDefs.h

Removed: 
    


################################################################################
diff  --git a/libc/utils/FPUtil/PlatformDefs.h b/libc/utils/FPUtil/PlatformDefs.h
index 30ed24d4fdda..274800a4cd8f 100644
--- a/libc/utils/FPUtil/PlatformDefs.h
+++ b/libc/utils/FPUtil/PlatformDefs.h
@@ -13,7 +13,7 @@
 #define X87_FPU
 #endif
 
-#if defined(_WIN32) || defined(_WIN64)
+#if defined(_WIN32)
 #define LONG_DOUBLE_IS_DOUBLE
 #endif
 

diff  --git a/libc/utils/FPUtil/TestHelpers.cpp b/libc/utils/FPUtil/TestHelpers.cpp
index cdc874545f8a..21053c818f66 100644
--- a/libc/utils/FPUtil/TestHelpers.cpp
+++ b/libc/utils/FPUtil/TestHelpers.cpp
@@ -74,7 +74,7 @@ template void describeValue<double>(const char *, double,
 template void describeValue<long double>(const char *, long double,
                                          testutils::StreamWrapper &);
 
-#if defined(_WIN32) || defined(_WIN64)
+#if defined(_WIN32)
 #define sigjmp_buf jmp_buf
 #define sigsetjmp(buf, save) setjmp(buf)
 #define siglongjmp(buf, val) longjmp(buf, val)

diff  --git a/libc/utils/UnitTest/PlatformDefs.h b/libc/utils/UnitTest/PlatformDefs.h
index 319b73e91f5c..40472f4eb4eb 100644
--- a/libc/utils/UnitTest/PlatformDefs.h
+++ b/libc/utils/UnitTest/PlatformDefs.h
@@ -9,7 +9,7 @@
 #ifndef LLVM_LIBC_UTILS_UNITTEST_PLATFORMDEFS_H
 #define LLVM_LIBC_UTILS_UNITTEST_PLATFORMDEFS_H
 
-#if !(defined(_WIN32) || defined(_WIN64))
+#if !defined(_WIN32)
 #define ENABLE_SUBPROCESS_TESTS
 #endif
 


        


More information about the libc-commits mailing list