[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread via cfe-commits

github-actions[bot] wrote:



@ViToni Congratulations on having your first Pull Request (PR) merged into the 
LLVM Project!

Your changes will be combined with recent changes from other authors, then 
tested
by our [build bots](https://lab.llvm.org/buildbot/). If there is a problem with 
a build, you may receive a report in an email or a comment on this PR.

Please check whether problems have been caused by your change specifically, as
the builds can include changes from many authors. It is not uncommon for your
change to be included in a build that fails due to someone else's changes, or
infrastructure issues.

How to do this, and the rest of the post-merge process, is covered in detail 
[here](https://llvm.org/docs/MyFirstTypoFix.html#myfirsttypofix-issues-after-landing-your-pr).

If your change does cause a problem, it may be reverted, or you can revert it 
yourself.
This is a normal part of [LLVM 
development](https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy).
 You can fix your changes and open a new PR to merge them again.

If you don't get any reports, no action is required from you. Your changes are 
working as expected, well done!


https://github.com/llvm/llvm-project/pull/88565
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread Nick Desaulniers via cfe-commits

https://github.com/nickdesaulniers closed 
https://github.com/llvm/llvm-project/pull/88565
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread Victor Toni via cfe-commits

ViToni wrote:

@nickdesaulniers Please. I wouldn't assume to have any permissions in this repo.

https://github.com/llvm/llvm-project/pull/88565
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread Nick Desaulniers via cfe-commits

nickdesaulniers wrote:

Thanks for the patch. Do you need one of us to merge this for you?

https://github.com/llvm/llvm-project/pull/88565
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread Nick Desaulniers via cfe-commits

https://github.com/nickdesaulniers approved this pull request.


https://github.com/llvm/llvm-project/pull/88565
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread Michael Jones via cfe-commits

michaelrj-google wrote:

Libc change LGTM

https://github.com/llvm/llvm-project/pull/88565
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread Balazs Benics via cfe-commits

https://github.com/steakhal approved this pull request.

LGTM

https://github.com/llvm/llvm-project/pull/88565
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread via cfe-commits

llvmbot wrote:



@llvm/pr-subscribers-clang
@llvm/pr-subscribers-clang-static-analyzer-1

@llvm/pr-subscribers-llvm-analysis

Author: Victor Toni (ViToni)


Changes



---
Full diff: https://github.com/llvm/llvm-project/pull/88565.diff


7 Files Affected:

- (modified) clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp (+1-1) 
- (modified) libc/src/__support/str_to_float.h (+4-4) 
- (modified) llvm/lib/Analysis/LoopCacheAnalysis.cpp (+1-1) 
- (modified) llvm/lib/Support/APInt.cpp (+1-1) 
- (modified) llvm/lib/Transforms/Scalar/LoopInterchange.cpp (+1-1) 
- (modified) llvm/test/Transforms/JumpThreading/free_instructions.ll (+1-1) 
- (modified) llvm/utils/lint/common_lint.py (+1-1) 


``diff
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp 
b/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
index 504fd7f05e0f99..c50db1e0e2f863 100644
--- a/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
+++ b/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
@@ -229,7 +229,7 @@ SVal ExprEngine::computeObjectUnderConstruction(
 // We are on the top frame of the analysis. We do not know where is the
 // object returned to. Conjure a symbolic region for the return value.
 // TODO: We probably need a new MemRegion kind to represent the storage
-// of that SymbolicRegion, so that we cound produce a fancy symbol
+// of that SymbolicRegion, so that we could produce a fancy symbol
 // instead of an anonymous conjured symbol.
 // TODO: Do we need to track the region to avoid having it dead
 // too early? It does die too early, at least in C++17, but because
diff --git a/libc/src/__support/str_to_float.h 
b/libc/src/__support/str_to_float.h
index cd0c07629f8766..fa466ca8492fc4 100644
--- a/libc/src/__support/str_to_float.h
+++ b/libc/src/__support/str_to_float.h
@@ -695,10 +695,10 @@ LIBC_INLINE FloatConvertReturn decimal_exp_to_float(
 // If the mantissa is truncated, then the result may be off by the LSB, so
 // check if rounding the mantissa up changes the result. If not, then it's
 // safe, else use the fallback.
-auto secound_output = eisel_lemire({mantissa + 1, exp10}, round);
-if (secound_output.has_value()) {
-  if (opt_output->mantissa == secound_output->mantissa &&
-  opt_output->exponent == secound_output->exponent) {
+auto second_output = eisel_lemire({mantissa + 1, exp10}, round);
+if (second_output.has_value()) {
+  if (opt_output->mantissa == second_output->mantissa &&
+  opt_output->exponent == second_output->exponent) {
 return {opt_output.value(), 0};
   }
 }
diff --git a/llvm/lib/Analysis/LoopCacheAnalysis.cpp 
b/llvm/lib/Analysis/LoopCacheAnalysis.cpp
index c3a56639b5c8f8..284d8d16d264e9 100644
--- a/llvm/lib/Analysis/LoopCacheAnalysis.cpp
+++ b/llvm/lib/Analysis/LoopCacheAnalysis.cpp
@@ -315,7 +315,7 @@ CacheCostTy IndexedReference::computeRefCost(const Loop ,
 RefCost = TripCount;
 
 int Index = getSubscriptIndex(L);
-assert(Index >= 0 && "Cound not locate a valid Index");
+assert(Index >= 0 && "Could not locate a valid Index");
 
 for (unsigned I = Index + 1; I < getNumSubscripts() - 1; ++I) {
   const SCEVAddRecExpr *AR = dyn_cast(getSubscript(I));
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index 8825025ec32134..40622301f7d95d 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -2660,7 +2660,7 @@ int APInt::tcDivide(WordType *lhs, const WordType *rhs,
   return false;
 }
 
-/// Shift a bignum left Cound bits in-place. Shifted in bits are zero. There 
are
+/// Shift a bignum left Count bits in-place. Shifted in bits are zero. There 
are
 /// no restrictions on Count.
 void APInt::tcShiftLeft(WordType *Dst, unsigned Words, unsigned Count) {
   // Don't bother performing a no-op shift.
diff --git a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp 
b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
index 277f530ee25fc1..400973fd9fc915 100644
--- a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+++ b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
@@ -976,7 +976,7 @@ bool LoopInterchangeLegality::canInterchangeLoops(unsigned 
InnerLoopId,
   }
 
   if (!findInductions(InnerLoop, InnerLoopInductions)) {
-LLVM_DEBUG(dbgs() << "Cound not find inner loop induction variables.\n");
+LLVM_DEBUG(dbgs() << "Could not find inner loop induction variables.\n");
 return false;
   }
 
diff --git a/llvm/test/Transforms/JumpThreading/free_instructions.ll 
b/llvm/test/Transforms/JumpThreading/free_instructions.ll
index 3485bf8c98da86..48bedc72c2d312 100644
--- a/llvm/test/Transforms/JumpThreading/free_instructions.ll
+++ b/llvm/test/Transforms/JumpThreading/free_instructions.ll
@@ -1,7 +1,7 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
 ; RUN: opt -S -passes=jump-threading -jump-threading-threshold=3 < %s | 
FileCheck %s
 
-; TODO: In this test case, only the stores in 

[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread via cfe-commits

llvmbot wrote:




@llvm/pr-subscribers-libc

Author: Victor Toni (ViToni)


Changes



---
Full diff: https://github.com/llvm/llvm-project/pull/88565.diff


7 Files Affected:

- (modified) clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp (+1-1) 
- (modified) libc/src/__support/str_to_float.h (+4-4) 
- (modified) llvm/lib/Analysis/LoopCacheAnalysis.cpp (+1-1) 
- (modified) llvm/lib/Support/APInt.cpp (+1-1) 
- (modified) llvm/lib/Transforms/Scalar/LoopInterchange.cpp (+1-1) 
- (modified) llvm/test/Transforms/JumpThreading/free_instructions.ll (+1-1) 
- (modified) llvm/utils/lint/common_lint.py (+1-1) 


``diff
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp 
b/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
index 504fd7f05e0f99..c50db1e0e2f863 100644
--- a/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
+++ b/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
@@ -229,7 +229,7 @@ SVal ExprEngine::computeObjectUnderConstruction(
 // We are on the top frame of the analysis. We do not know where is the
 // object returned to. Conjure a symbolic region for the return value.
 // TODO: We probably need a new MemRegion kind to represent the storage
-// of that SymbolicRegion, so that we cound produce a fancy symbol
+// of that SymbolicRegion, so that we could produce a fancy symbol
 // instead of an anonymous conjured symbol.
 // TODO: Do we need to track the region to avoid having it dead
 // too early? It does die too early, at least in C++17, but because
diff --git a/libc/src/__support/str_to_float.h 
b/libc/src/__support/str_to_float.h
index cd0c07629f8766..fa466ca8492fc4 100644
--- a/libc/src/__support/str_to_float.h
+++ b/libc/src/__support/str_to_float.h
@@ -695,10 +695,10 @@ LIBC_INLINE FloatConvertReturn decimal_exp_to_float(
 // If the mantissa is truncated, then the result may be off by the LSB, so
 // check if rounding the mantissa up changes the result. If not, then it's
 // safe, else use the fallback.
-auto secound_output = eisel_lemire({mantissa + 1, exp10}, round);
-if (secound_output.has_value()) {
-  if (opt_output->mantissa == secound_output->mantissa &&
-  opt_output->exponent == secound_output->exponent) {
+auto second_output = eisel_lemire({mantissa + 1, exp10}, round);
+if (second_output.has_value()) {
+  if (opt_output->mantissa == second_output->mantissa &&
+  opt_output->exponent == second_output->exponent) {
 return {opt_output.value(), 0};
   }
 }
diff --git a/llvm/lib/Analysis/LoopCacheAnalysis.cpp 
b/llvm/lib/Analysis/LoopCacheAnalysis.cpp
index c3a56639b5c8f8..284d8d16d264e9 100644
--- a/llvm/lib/Analysis/LoopCacheAnalysis.cpp
+++ b/llvm/lib/Analysis/LoopCacheAnalysis.cpp
@@ -315,7 +315,7 @@ CacheCostTy IndexedReference::computeRefCost(const Loop ,
 RefCost = TripCount;
 
 int Index = getSubscriptIndex(L);
-assert(Index >= 0 && "Cound not locate a valid Index");
+assert(Index >= 0 && "Could not locate a valid Index");
 
 for (unsigned I = Index + 1; I < getNumSubscripts() - 1; ++I) {
   const SCEVAddRecExpr *AR = dyn_cast(getSubscript(I));
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index 8825025ec32134..40622301f7d95d 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -2660,7 +2660,7 @@ int APInt::tcDivide(WordType *lhs, const WordType *rhs,
   return false;
 }
 
-/// Shift a bignum left Cound bits in-place. Shifted in bits are zero. There 
are
+/// Shift a bignum left Count bits in-place. Shifted in bits are zero. There 
are
 /// no restrictions on Count.
 void APInt::tcShiftLeft(WordType *Dst, unsigned Words, unsigned Count) {
   // Don't bother performing a no-op shift.
diff --git a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp 
b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
index 277f530ee25fc1..400973fd9fc915 100644
--- a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+++ b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
@@ -976,7 +976,7 @@ bool LoopInterchangeLegality::canInterchangeLoops(unsigned 
InnerLoopId,
   }
 
   if (!findInductions(InnerLoop, InnerLoopInductions)) {
-LLVM_DEBUG(dbgs() << "Cound not find inner loop induction variables.\n");
+LLVM_DEBUG(dbgs() << "Could not find inner loop induction variables.\n");
 return false;
   }
 
diff --git a/llvm/test/Transforms/JumpThreading/free_instructions.ll 
b/llvm/test/Transforms/JumpThreading/free_instructions.ll
index 3485bf8c98da86..48bedc72c2d312 100644
--- a/llvm/test/Transforms/JumpThreading/free_instructions.ll
+++ b/llvm/test/Transforms/JumpThreading/free_instructions.ll
@@ -1,7 +1,7 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
 ; RUN: opt -S -passes=jump-threading -jump-threading-threshold=3 < %s | 
FileCheck %s
 
-; TODO: In this test case, only the stores in %join should cound towards
+; TODO: In this test case, only the stores in %join 

[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread via cfe-commits

github-actions[bot] wrote:



Thank you for submitting a Pull Request (PR) to the LLVM Project!

This PR will be automatically labeled and the relevant teams will be
notified.

If you wish to, you can add reviewers by using the "Reviewers" section on this 
page.

If this is not working for you, it is probably because you do not have write
permissions for the repository. In which case you can instead tag reviewers by
name in a comment by using `@` followed by their GitHub username.

If you have received no comments on your PR for a week, you can request a review
by "ping"ing the PR by adding a comment “Ping”. The common courtesy "ping" rate
is once a week. Please remember that you are asking for valuable time from 
other developers.

If you have further questions, they may be answered by the [LLVM GitHub User 
Guide](https://llvm.org/docs/GitHub.html).

You can also ask questions in a comment on this PR, on the [LLVM 
Discord](https://discord.com/invite/xS7Z362) or on the 
[forums](https://discourse.llvm.org/).

https://github.com/llvm/llvm-project/pull/88565
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


[clang] [libc] [llvm] Fix typos (PR #88565)

2024-04-12 Thread Victor Toni via cfe-commits

https://github.com/ViToni created 
https://github.com/llvm/llvm-project/pull/88565

None

>From 7e172bc788e3434b27bd2a6712b24d206b92628f Mon Sep 17 00:00:00 2001
From: Victor Toni 
Date: Fri, 12 Apr 2024 21:17:12 +0200
Subject: [PATCH] Fix typos

---
 clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp | 2 +-
 libc/src/__support/str_to_float.h   | 8 
 llvm/lib/Analysis/LoopCacheAnalysis.cpp | 2 +-
 llvm/lib/Support/APInt.cpp  | 2 +-
 llvm/lib/Transforms/Scalar/LoopInterchange.cpp  | 2 +-
 llvm/test/Transforms/JumpThreading/free_instructions.ll | 2 +-
 llvm/utils/lint/common_lint.py  | 2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp 
b/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
index 504fd7f05e0f99..c50db1e0e2f863 100644
--- a/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
+++ b/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
@@ -229,7 +229,7 @@ SVal ExprEngine::computeObjectUnderConstruction(
 // We are on the top frame of the analysis. We do not know where is the
 // object returned to. Conjure a symbolic region for the return value.
 // TODO: We probably need a new MemRegion kind to represent the storage
-// of that SymbolicRegion, so that we cound produce a fancy symbol
+// of that SymbolicRegion, so that we could produce a fancy symbol
 // instead of an anonymous conjured symbol.
 // TODO: Do we need to track the region to avoid having it dead
 // too early? It does die too early, at least in C++17, but because
diff --git a/libc/src/__support/str_to_float.h 
b/libc/src/__support/str_to_float.h
index cd0c07629f8766..fa466ca8492fc4 100644
--- a/libc/src/__support/str_to_float.h
+++ b/libc/src/__support/str_to_float.h
@@ -695,10 +695,10 @@ LIBC_INLINE FloatConvertReturn decimal_exp_to_float(
 // If the mantissa is truncated, then the result may be off by the LSB, so
 // check if rounding the mantissa up changes the result. If not, then it's
 // safe, else use the fallback.
-auto secound_output = eisel_lemire({mantissa + 1, exp10}, round);
-if (secound_output.has_value()) {
-  if (opt_output->mantissa == secound_output->mantissa &&
-  opt_output->exponent == secound_output->exponent) {
+auto second_output = eisel_lemire({mantissa + 1, exp10}, round);
+if (second_output.has_value()) {
+  if (opt_output->mantissa == second_output->mantissa &&
+  opt_output->exponent == second_output->exponent) {
 return {opt_output.value(), 0};
   }
 }
diff --git a/llvm/lib/Analysis/LoopCacheAnalysis.cpp 
b/llvm/lib/Analysis/LoopCacheAnalysis.cpp
index c3a56639b5c8f8..284d8d16d264e9 100644
--- a/llvm/lib/Analysis/LoopCacheAnalysis.cpp
+++ b/llvm/lib/Analysis/LoopCacheAnalysis.cpp
@@ -315,7 +315,7 @@ CacheCostTy IndexedReference::computeRefCost(const Loop ,
 RefCost = TripCount;
 
 int Index = getSubscriptIndex(L);
-assert(Index >= 0 && "Cound not locate a valid Index");
+assert(Index >= 0 && "Could not locate a valid Index");
 
 for (unsigned I = Index + 1; I < getNumSubscripts() - 1; ++I) {
   const SCEVAddRecExpr *AR = dyn_cast(getSubscript(I));
diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index 8825025ec32134..40622301f7d95d 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -2660,7 +2660,7 @@ int APInt::tcDivide(WordType *lhs, const WordType *rhs,
   return false;
 }
 
-/// Shift a bignum left Cound bits in-place. Shifted in bits are zero. There 
are
+/// Shift a bignum left Count bits in-place. Shifted in bits are zero. There 
are
 /// no restrictions on Count.
 void APInt::tcShiftLeft(WordType *Dst, unsigned Words, unsigned Count) {
   // Don't bother performing a no-op shift.
diff --git a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp 
b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
index 277f530ee25fc1..400973fd9fc915 100644
--- a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
+++ b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
@@ -976,7 +976,7 @@ bool LoopInterchangeLegality::canInterchangeLoops(unsigned 
InnerLoopId,
   }
 
   if (!findInductions(InnerLoop, InnerLoopInductions)) {
-LLVM_DEBUG(dbgs() << "Cound not find inner loop induction variables.\n");
+LLVM_DEBUG(dbgs() << "Could not find inner loop induction variables.\n");
 return false;
   }
 
diff --git a/llvm/test/Transforms/JumpThreading/free_instructions.ll 
b/llvm/test/Transforms/JumpThreading/free_instructions.ll
index 3485bf8c98da86..48bedc72c2d312 100644
--- a/llvm/test/Transforms/JumpThreading/free_instructions.ll
+++ b/llvm/test/Transforms/JumpThreading/free_instructions.ll
@@ -1,7 +1,7 @@
 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
 ; RUN: opt -S -passes=jump-threading -jump-threading-threshold=3 < %s | 
FileCheck