Indentation.

llvm-svn: 71724
This commit is contained in:
Evan Cheng 2009-05-13 21:39:20 +00:00
parent 0aef72c697
commit ca528538a9
1 changed files with 1 additions and 1 deletions

View File

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