[libc-commits] [libc] [libc] rename LLVM_LIBC_SRC___SUPPORT_UINT_H to LLVM_LIBC_SRC___SUPPORT_BIG_INT_H for consistent naming (PR #114592)
via libc-commits
libc-commits at lists.llvm.org
Fri Nov 1 12:09:44 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Oleksandr T. (a-tarasyuk)
<details>
<summary>Changes</summary>
Fixes #<!-- -->114572
---
Full diff: https://github.com/llvm/llvm-project/pull/114592.diff
1 Files Affected:
- (modified) libc/src/__support/big_int.h (+3-3)
``````````diff
diff --git a/libc/src/__support/big_int.h b/libc/src/__support/big_int.h
index 246b89f08f2ff9..bea0abc84b2136 100644
--- a/libc/src/__support/big_int.h
+++ b/libc/src/__support/big_int.h
@@ -6,8 +6,8 @@
//
//===----------------------------------------------------------------------===//
-#ifndef LLVM_LIBC_SRC___SUPPORT_UINT_H
-#define LLVM_LIBC_SRC___SUPPORT_UINT_H
+#ifndef LLVM_LIBC_SRC___SUPPORT_BIG_INT_H
+#define LLVM_LIBC_SRC___SUPPORT_BIG_INT_H
#include "src/__support/CPP/array.h"
#include "src/__support/CPP/bit.h" // countl_zero
@@ -1373,4 +1373,4 @@ first_trailing_one(T value) {
} // namespace LIBC_NAMESPACE_DECL
-#endif // LLVM_LIBC_SRC___SUPPORT_UINT_H
+#endif // LLVM_LIBC_SRC___SUPPORT_BIG_INT_H
``````````
</details>
https://github.com/llvm/llvm-project/pull/114592
More information about the libc-commits
mailing list