summaryrefslogtreecommitdiff
path: root/absl/crc/internal/cpu_detect.cc
diff options
context:
space:
mode:
Diffstat (limited to 'absl/crc/internal/cpu_detect.cc')
-rw-r--r--absl/crc/internal/cpu_detect.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/absl/crc/internal/cpu_detect.cc b/absl/crc/internal/cpu_detect.cc
index e10c7ac0..339b7cc7 100644
--- a/absl/crc/internal/cpu_detect.cc
+++ b/absl/crc/internal/cpu_detect.cc
@@ -206,6 +206,8 @@ CpuType GetCpuType() {
}
}
+bool SupportsArmCRC32PMULL() { return false; }
+
#elif defined(__aarch64__) && defined(__linux__)
#define ABSL_INTERNAL_AARCH64_ID_REG_READ(id, val) \
@@ -240,6 +242,8 @@ bool SupportsArmCRC32PMULL() {
CpuType GetCpuType() { return CpuType::kUnknown; }
+bool SupportsArmCRC32PMULL() { return false; }
+
#endif
} // namespace crc_internal