aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-05-13 21:39:20 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-05-13 21:39:20 +0000
commit4f772d73789863a64d6f1ac45adad5f3d6ef301c (patch)
treeb67e88ac55293424d248b458341c9ab658328704 /include/llvm/CodeGen
parent2b739762c5444433753e4d3a141ff20f40636611 (diff)
downloadexternal_llvm-4f772d73789863a64d6f1ac45adad5f3d6ef301c.zip
external_llvm-4f772d73789863a64d6f1ac45adad5f3d6ef301c.tar.gz
external_llvm-4f772d73789863a64d6f1ac45adad5f3d6ef301c.tar.bz2
Indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71724 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index 35b5cd6..5fbda87 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -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);