[llvm] r274636 - fix typo; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 6 09:42:46 PDT 2016
Author: spatel
Date: Wed Jul 6 11:42:46 2016
New Revision: 274636
URL: http://llvm.org/viewvc/llvm-project?rev=274636&view=rev
Log:
fix typo; NFC
Modified:
llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp
Modified: llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp?rev=274636&r1=274635&r2=274636&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp Wed Jul 6 11:42:46 2016
@@ -2269,7 +2269,7 @@ SDValue PPCTargetLowering::LowerSETCC(SD
}
// If we're comparing for equality to zero, expose the fact that this is
- // implented as a ctlz/srl pair on ppc, so that the dag combiner can
+ // implemented as a ctlz/srl pair on ppc, so that the dag combiner can
// fold the new nodes.
if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
if (C->isNullValue() && CC == ISD::SETEQ) {
More information about the llvm-commits
mailing list