summaryrefslogtreecommitdiff
path: root/standalone/crc32_hw.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'standalone/crc32_hw.cpp')
-rw-r--r--standalone/crc32_hw.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/standalone/crc32_hw.cpp b/standalone/crc32_hw.cpp
index d13c615498f..73f2ae000c6 100644
--- a/standalone/crc32_hw.cpp
+++ b/standalone/crc32_hw.cpp
@@ -14,6 +14,7 @@ namespace scudo {
u32 computeHardwareCRC32(u32 Crc, uptr Data) {
return static_cast<u32>(CRC32_INTRINSIC(Crc, Data));
}
-#endif // defined(__CRC32__) || defined(__SSE4_2__) || defined(__ARM_FEATURE_CRC32)
+#endif // defined(__CRC32__) || defined(__SSE4_2__) ||
+ // defined(__ARM_FEATURE_CRC32)
} // namespace scudo