summaryrefslogtreecommitdiff
path: root/lib/CodeGen/TwoAddressInstructionPass.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-10-26 18:41:41 +0000
committerChris Lattner <sabre@nondot.org>2005-10-26 18:41:41 +0000
commitc60e6020c0dd1260b0d60835e2ab823f97a4b810 (patch)
tree47cfa54644f6f2142b6d886e354e8fd1455b2a4b /lib/CodeGen/TwoAddressInstructionPass.cpp
parent2cbc207c76f10716b61c466f56b5b9fccbb80f4e (diff)
downloadllvm-c60e6020c0dd1260b0d60835e2ab823f97a4b810.tar.gz
llvm-c60e6020c0dd1260b0d60835e2ab823f97a4b810.tar.bz2
llvm-c60e6020c0dd1260b0d60835e2ab823f97a4b810.tar.xz
Fix some spello's pointed out by Gabor Greif
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24019 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/TwoAddressInstructionPass.cpp')
-rw-r--r--lib/CodeGen/TwoAddressInstructionPass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/TwoAddressInstructionPass.cpp b/lib/CodeGen/TwoAddressInstructionPass.cpp
index 2e6d8260e3..3aa2cc7c9b 100644
--- a/lib/CodeGen/TwoAddressInstructionPass.cpp
+++ b/lib/CodeGen/TwoAddressInstructionPass.cpp
@@ -46,7 +46,7 @@ namespace {
Statistic<> NumTwoAddressInstrs("twoaddressinstruction",
"Number of two-address instructions");
Statistic<> NumCommuted("twoaddressinstruction",
- "Number of instructions commuted to coallesce");
+ "Number of instructions commuted to coalesce");
Statistic<> NumConvertedTo3Addr("twoaddressinstruction",
"Number of instructions promoted to 3-address");
@@ -127,7 +127,7 @@ bool TwoAddressInstructionPass::runOnMachineFunction(MachineFunction &MF) {
// If this instruction is not the killing user of B, see if we can
// rearrange the code to make it so. Making it the killing user will
- // allow us to coallesce A and B together, eliminating the copy we are
+ // allow us to coalesce A and B together, eliminating the copy we are
// about to insert.
if (!LV.KillsRegister(mi, regB)) {
const TargetInstrDescriptor &TID = TII.get(opcode);