summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit3c7974aadec553710c574575935ef2ee3cf9af2e (patch)
treeb1717abc68c7a7e4fdbefb0e00d3f47628e1620a /llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
parent75eab3ca631500015d912b7c40679ad1eaf922d5 (diff)
downloadbcm5719-llvm-3c7974aadec553710c574575935ef2ee3cf9af2e.tar.gz
bcm5719-llvm-3c7974aadec553710c574575935ef2ee3cf9af2e.zip
Fix some spello's pointed out by Gabor Greif
llvm-svn: 24019
Diffstat (limited to 'llvm/lib/CodeGen/TwoAddressInstructionPass.cpp')
-rw-r--r--llvm/lib/CodeGen/TwoAddressInstructionPass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp b/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
index 2e6d8260e3f..3aa2cc7c9b8 100644
--- a/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
+++ b/llvm/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);
OpenPOWER on IntegriCloud