[llvm] 23d894e - llvm-reduce: Fix comment typo

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 1 21:43:23 PDT 2025


Author: Matt Arsenault
Date: 2025-04-02T11:43:09+07:00
New Revision: 23d894e0a3cf5cbc1ac754761da4f82608e14747

URL: https://github.com/llvm/llvm-project/commit/23d894e0a3cf5cbc1ac754761da4f82608e14747
DIFF: https://github.com/llvm/llvm-project/commit/23d894e0a3cf5cbc1ac754761da4f82608e14747.diff

LOG: llvm-reduce: Fix comment typo

Added: 
    

Modified: 
    llvm/tools/llvm-reduce/deltas/ReduceFunctions.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/llvm-reduce/deltas/ReduceFunctions.cpp b/llvm/tools/llvm-reduce/deltas/ReduceFunctions.cpp
index 44f1e52204f2f..6022b53fae29c 100644
--- a/llvm/tools/llvm-reduce/deltas/ReduceFunctions.cpp
+++ b/llvm/tools/llvm-reduce/deltas/ReduceFunctions.cpp
@@ -42,7 +42,7 @@ void llvm::reduceFunctionsDeltaPass(Oracle &O, ReducerWorkItem &WorkItem) {
   });
 
   // Then, drop body of each of them. We want to batch this and do nothing else
-  // here so that minimal number of remaining exteranal uses will remain.
+  // here so that minimal number of remaining external uses will remain.
   for (Constant *F : FuncsToRemove)
     F->dropAllReferences();
 


        


More information about the llvm-commits mailing list