diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-17 21:34:23 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-17 21:34:23 +0000 |
commit | 6eba07a6a3dacec09aefa54a305b06c98b0c86c1 (patch) | |
tree | f5303b2f02f18c89ad49f92344071d5487581602 /lib/CodeGen/MachineInstr.cpp | |
parent | a589d31faa44e0c9175e66417ae57b03959e0675 (diff) |
Fixed spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8588 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 248adc2d4d..c8e930e7d4 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -127,7 +127,7 @@ MachineInstr::SetRegForImplicitRef(unsigned i, int regNum) } -// Subsitute all occurrences of Value* oldVal with newVal in all operands +// Substitute all occurrences of Value* oldVal with newVal in all operands // and all implicit refs. // If defsOnly == true, substitute defs only. unsigned @@ -140,7 +140,7 @@ MachineInstr::substituteValue(const Value* oldVal, Value* newVal, unsigned numSubst = 0; - // Subsitute operands + // Substitute operands for (MachineInstr::val_op_iterator O = begin(), E = end(); O != E; ++O) if (*O == oldVal) if (!defsOnly || @@ -153,7 +153,7 @@ MachineInstr::substituteValue(const Value* oldVal, Value* newVal, else someArgsWereIgnored = true; - // Subsitute implicit refs + // Substitute implicit refs for (unsigned i=0, N=getNumImplicitRefs(); i < N; ++i) if (getImplicitRef(i) == oldVal) if (!defsOnly || @@ -301,7 +301,7 @@ void MachineInstr::print(std::ostream &OS, const TargetMachine &TM) const { OS << "<def>"; } - // code for printing implict references + // code for printing implicit references if (getNumImplicitRefs()) { OS << "\tImplicitRefs: "; for(unsigned i = 0, e = getNumImplicitRefs(); i != e; ++i) { @@ -330,7 +330,7 @@ std::ostream &operator<<(std::ostream& os, const MachineInstr& MI) os << "<d&u>"; } - // code for printing implict references + // code for printing implicit references unsigned NumOfImpRefs = MI.getNumImplicitRefs(); if (NumOfImpRefs > 0) { os << "\tImplicit: "; |