[libc-commits] [libc] 21895a8 - [libc] rename LLVM_LIBC_SRC___SUPPORT_UINT_H to LLVM_LIBC_SRC___SUPPORT_BIG_INT_H for consistent naming (#114592)

via libc-commits libc-commits at lists.llvm.org
Fri Nov 1 13:48:43 PDT 2024


Author: Oleksandr T.
Date: 2024-11-01T13:48:39-07:00
New Revision: 21895a84cf466f0a0632cfca0175f7e617a6dd5a

URL: https://github.com/llvm/llvm-project/commit/21895a84cf466f0a0632cfca0175f7e617a6dd5a
DIFF: https://github.com/llvm/llvm-project/commit/21895a84cf466f0a0632cfca0175f7e617a6dd5a.diff

LOG: [libc] rename LLVM_LIBC_SRC___SUPPORT_UINT_H to LLVM_LIBC_SRC___SUPPORT_BIG_INT_H for consistent naming (#114592)

Fixes #114572

Added: 
    

Modified: 
    libc/src/__support/big_int.h

Removed: 
    


################################################################################
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


        


More information about the libc-commits mailing list