[libc-commits] [libc] [libc] fix typo in stdbit.h macro spec files (PR #84780)
via libc-commits
libc-commits at lists.llvm.org
Mon Mar 11 09:11:02 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Nick Desaulniers (nickdesaulniers)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/84780.diff
1 Files Affected:
- (modified) libc/spec/stdc.td (+3-3)
``````````diff
diff --git a/libc/spec/stdc.td b/libc/spec/stdc.td
index d91f5c1f723345..486e5dd9e894d5 100644
--- a/libc/spec/stdc.td
+++ b/libc/spec/stdc.td
@@ -815,9 +815,9 @@ def StdC : StandardSpec<"stdc"> {
Macro<"stdc_count_zeros">,
Macro<"stdc_count_ones">,
Macro<"stdc_has_single_bit">,
- Macro<"std_bit_width">,
- Macro<"std_bit_floor">,
- Macro<"std_bit_ceil">
+ Macro<"stdc_bit_width">,
+ Macro<"stdc_bit_floor">,
+ Macro<"stdc_bit_ceil">
], // Macros
[], // Types
[], // Enumerations
``````````
</details>
https://github.com/llvm/llvm-project/pull/84780
More information about the libc-commits
mailing list