summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorAmara Emerson <aemerson@apple.com>2018-02-02 01:49:59 +0000
committerAmara Emerson <aemerson@apple.com>2018-02-02 01:49:59 +0000
commit98af4664e0b7940a65f10b4946e27cc8cc7c66e0 (patch)
tree65a57b158db52bf9e0892f1ae186f37fe0a178da /llvm/lib/CodeGen
parent58aea52bc44fa93223489510a3da8a16a0353373 (diff)
downloadbcm5719-llvm-98af4664e0b7940a65f10b4946e27cc8cc7c66e0.tar.gz
bcm5719-llvm-98af4664e0b7940a65f10b4946e27cc8cc7c66e0.zip
Fix debug spelling in ResetMachineFunction pass.
llvm-svn: 324048
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/ResetMachineFunctionPass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp b/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
index f1885aa7428..2be3a557387 100644
--- a/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
+++ b/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
@@ -47,7 +47,7 @@ namespace {
MachineFunctionProperties::Property::FailedISel)) {
if (AbortOnFailedISel)
report_fatal_error("Instruction selection failed");
- DEBUG(dbgs() << "Reseting: " << MF.getName() << '\n');
+ DEBUG(dbgs() << "Resetting: " << MF.getName() << '\n');
++NumFunctionsReset;
MF.reset();
if (EmitFallbackDiag) {
@@ -65,7 +65,7 @@ namespace {
char ResetMachineFunction::ID = 0;
INITIALIZE_PASS(ResetMachineFunction, DEBUG_TYPE,
- "reset machine function if ISel failed", false, false)
+ "Reset machine function if ISel failed", false, false)
MachineFunctionPass *
llvm::createResetMachineFunctionPass(bool EmitFallbackDiag = false,
OpenPOWER on IntegriCloud