aboutsummaryrefslogtreecommitdiff
path: root/libc/test
diff options
context:
space:
mode:
authorJoseph Huber <huberjn@outlook.com>2024-03-10 09:31:27 -0500
committerJoseph Huber <huberjn@outlook.com>2024-03-10 09:32:12 -0500
commit033dbbe4f183cc0c401af72a2d57ab659e9693d4 (patch)
treefa0da83f65c77e8445e4f123569f5237a05ce822 /libc/test
parent3ec1f25f3cf9346590892397ec9ddd859397d363 (diff)
downloadllvm-033dbbe4f183cc0c401af72a2d57ab659e9693d4.zip
llvm-033dbbe4f183cc0c401af72a2d57ab659e9693d4.tar.gz
llvm-033dbbe4f183cc0c401af72a2d57ab659e9693d4.tar.bz2
[libc][NFC] Clean up stray ';' and default enum warning
Summary: Cleans up two warnings I get locally while building.
Diffstat (limited to 'libc/test')
-rw-r--r--libc/test/src/__support/FPUtil/fpbits_test.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/test/src/__support/FPUtil/fpbits_test.cpp b/libc/test/src/__support/FPUtil/fpbits_test.cpp
index 7600315..f5c27d4 100644
--- a/libc/test/src/__support/FPUtil/fpbits_test.cpp
+++ b/libc/test/src/__support/FPUtil/fpbits_test.cpp
@@ -237,8 +237,6 @@ template <typename T> constexpr auto make(Sign sign, FP fp) {
return T::signaling_nan(sign);
case FP::QUIET_NAN:
return T::quiet_nan(sign);
- default:
- __builtin_unreachable();
}
}