diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-12-01 19:19:18 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-12-01 19:19:18 +0000 |
commit | 96824deebcccab5daf1f04d0b88b8e48bdce32c0 (patch) | |
tree | cea6b5c54571353efac618fe8609e5dcc514a79a | |
parent | bb94e440d50f92f589134e19f9876bd59f2666de (diff) | |
download | bcm5719-llvm-96824deebcccab5daf1f04d0b88b8e48bdce32c0.tar.gz bcm5719-llvm-96824deebcccab5daf1f04d0b88b8e48bdce32c0.zip |
fix typo; NFC
llvm-svn: 254442
-rw-r--r-- | llvm/lib/CodeGen/TwoAddressInstructionPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp b/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp index c96c813b0c9..c407d594add 100644 --- a/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp +++ b/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp @@ -1181,7 +1181,7 @@ bool TwoAddressInstructionPass::tryInstructionCommute(MachineInstr *MI, unsigned OtherOpIdx = MI->getDesc().getNumDefs(); for (; OtherOpIdx < OpsNum; OtherOpIdx++) { // The call of findCommutedOpIndices below only checks if BaseOpIdx - // and OtherOpIdx are commutable, it does not really searches for + // and OtherOpIdx are commutable, it does not really search for // other commutable operands and does not change the values of passed // variables. if (OtherOpIdx == BaseOpIdx || |