[llvm-commits] [llvm] r71724 - /llvm/trunk/include/llvm/CodeGen/SelectionDAG.h

Evan Cheng evan.cheng at apple.com
Wed May 13 14:39:28 PDT 2009


Author: evancheng
Date: Wed May 13 16:39:20 2009
New Revision: 71724

URL: http://llvm.org/viewvc/llvm-project?rev=71724&view=rev
Log:
Indentation.

Modified:
    llvm/trunk/include/llvm/CodeGen/SelectionDAG.h

Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAG.h?rev=71724&r1=71723&r2=71724&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAG.h Wed May 13 16:39:20 2009
@@ -316,7 +316,7 @@
   // 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);





More information about the llvm-commits mailing list