summaryrefslogtreecommitdiff
path: root/cmake/ProcessorChecks.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/ProcessorChecks.cmake')
-rw-r--r--cmake/ProcessorChecks.cmake11
1 files changed, 0 insertions, 11 deletions
diff --git a/cmake/ProcessorChecks.cmake b/cmake/ProcessorChecks.cmake
index 8d8c568a..08e89604 100644
--- a/cmake/ProcessorChecks.cmake
+++ b/cmake/ProcessorChecks.cmake
@@ -26,17 +26,6 @@
include(TestBigEndian)
-
-# CPU bit order
-set(HOST_FILLORDER FILLORDER_MSB2LSB)
-if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "i.*86.*" OR
- CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "amd64.*" OR
- # AMD64 on Windows
- CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "AMD64" OR
- CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "x86_64.*")
- set(HOST_FILLORDER FILLORDER_LSB2MSB)
-endif()
-
# CPU endianness
test_big_endian(HOST_BIG_ENDIAN)
if(HOST_BIG_ENDIAN)