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

Oleksandr T. via libc-commits libc-commits at lists.llvm.org
Fri Nov 1 12:09:09 PDT 2024


https://github.com/a-tarasyuk created https://github.com/llvm/llvm-project/pull/114592

Fixes #114572

>From a2d423b133f5e38a6263ce853ce27e7b0b8d7636 Mon Sep 17 00:00:00 2001
From: Oleksandr T <oleksandr.tarasiuk at outlook.com>
Date: Fri, 1 Nov 2024 21:08:27 +0200
Subject: [PATCH] [libc] rename LLVM_LIBC_SRC___SUPPORT_UINT_H to
 LLVM_LIBC_SRC___SUPPORT_BIG_INT_H for consistent naming

---
 libc/src/__support/big_int.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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