Indentation.
authorEvan Cheng <evan.cheng@apple.com>
Wed, 13 May 2009 21:39:20 +0000 (21:39 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 13 May 2009 21:39:20 +0000 (21:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71724 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/SelectionDAG.h

index 35b5cd6b7dd496463dce1acc2ecbc911209f21b4..5fbda87765300b34803d5f82156ed0e4d629289d 100644 (file)
@@ -316,7 +316,7 @@ public:
   // indicates that there is potentially an incoming flag value (if Flag is not
   // null) and that there should be a flag result.
   SDValue getCopyToReg(SDValue Chain, DebugLoc dl, unsigned Reg, SDValue N,
-                         SDValue Flag) {
+                       SDValue Flag) {
     SDVTList VTs = getVTList(MVT::Other, MVT::Flag);
     SDValue Ops[] = { Chain, getRegister(Reg, N.getValueType()), N, Flag };
     return getNode(ISD::CopyToReg, dl, VTs, Ops, Flag.getNode() ? 4 : 3);