[llvm] r178280 - Fix bad indentation in r178276
Hal Finkel
hfinkel at anl.gov
Thu Mar 28 12:43:12 PDT 2013
Author: hfinkel
Date: Thu Mar 28 14:43:12 2013
New Revision: 178280
URL: http://llvm.org/viewvc/llvm-project?rev=178280&view=rev
Log:
Fix bad indentation in r178276
Thanks to Bill Schmidt for pointing this out!
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=178280&r1=178279&r2=178280&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/PowerPC/PPCISelLowering.cpp Thu Mar 28 14:43:12 2013
@@ -6642,8 +6642,7 @@ SDValue PPCTargetLowering::PerformDAGCom
DAG.getMemIntrinsicNode(PPCISD::LBRX, dl,
DAG.getVTList(N->getValueType(0) == MVT::i64 ?
MVT::i64 : MVT::i32, MVT::Other),
- Ops, 3,
- LD->getMemoryVT(), LD->getMemOperand());
+ Ops, 3, LD->getMemoryVT(), LD->getMemOperand());
// If this is an i16 load, insert the truncate.
SDValue ResVal = BSLoad;
More information about the llvm-commits
mailing list