[llvm] 562accd - [NFC] Fix typo in dbg message in RegisterCoalescer.
via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 23 06:14:53 PDT 2022
Author: Thomas Symalla
Date: 2022-08-23T15:14:45+02:00
New Revision: 562accddaaa243e9d4772f1d1ff1389f90594df2
URL: https://github.com/llvm/llvm-project/commit/562accddaaa243e9d4772f1d1ff1389f90594df2
DIFF: https://github.com/llvm/llvm-project/commit/562accddaaa243e9d4772f1d1ff1389f90594df2.diff
LOG: [NFC] Fix typo in dbg message in RegisterCoalescer.
funcion => function
Added:
Modified:
llvm/lib/CodeGen/RegisterCoalescer.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/RegisterCoalescer.cpp b/llvm/lib/CodeGen/RegisterCoalescer.cpp
index 3003c4911b41..21b0ae63184c 100644
--- a/llvm/lib/CodeGen/RegisterCoalescer.cpp
+++ b/llvm/lib/CodeGen/RegisterCoalescer.cpp
@@ -4108,7 +4108,7 @@ bool RegisterCoalescer::runOnMachineFunction(MachineFunction &fn) {
// calls
if (fn.exposesReturnsTwice()) {
LLVM_DEBUG(
- dbgs() << "* Skipped as it exposes funcions that returns twice.\n");
+ dbgs() << "* Skipped as it exposes functions that returns twice.\n");
return false;
}
More information about the llvm-commits
mailing list