Skip to content

Commit 0590dba

Browse files
committed
Add missing #endif.
1 parent b97174a commit 0590dba

File tree

1 file changed

+2
-1
lines changed
  • libc/src/__support/FPUtil

1 file changed

+2
-1
lines changed

libc/src/__support/FPUtil/sqrt.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@ template <> LIBC_INLINE double sqrt<double>(double x) {
4646
#include "arm/sqrt.h"
4747
#elif defined(LIBC_TARGET_ARCH_IS_ANY_RISCV)
4848
#include "riscv/sqrt.h"
49+
#endif // Target specific header of inline asm.
4950

5051
#endif // __builtin_elementwise_sqrt
5152

52-
#endif
53+
#endif // LIBC_TARGET_CPU_HAS_FPU_FLOAT or DOUBLE
5354

5455
#endif // LLVM_LIBC_SRC___SUPPORT_FPUTIL_SQRT_H

0 commit comments

Comments
 (0)