summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-12-02 11:31:25 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-12-02 11:31:25 +0000
commite126dcbff9406a6beeadee02a5efc652b42fece6 (patch)
tree47e826fdbeeb1259b548e85475aaa7abd10516c3
parent66daa0e0672e72de42613c64810d007cc7593b88 (diff)
downloadllvm-e126dcbff9406a6beeadee02a5efc652b42fece6.tar.gz
llvm-e126dcbff9406a6beeadee02a5efc652b42fece6.tar.bz2
llvm-e126dcbff9406a6beeadee02a5efc652b42fece6.tar.xz
XCoreFrameLowering.cpp: Use [in,out] instead of [in] [out]. [-Wdocumentation]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196094 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/XCore/XCoreFrameLowering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/XCore/XCoreFrameLowering.cpp b/lib/Target/XCore/XCoreFrameLowering.cpp
index ea25e71961..238a59aaa1 100644
--- a/lib/Target/XCore/XCoreFrameLowering.cpp
+++ b/lib/Target/XCore/XCoreFrameLowering.cpp
@@ -75,7 +75,7 @@ static void EmitCfiOffset(MachineBasicBlock &MBB,
/// IfNeededExtSP emits the necessary EXTSP instructions to move the SP only
/// as far as to make 'OffsetFromBottom' reachable using an STWSP_lru6.
/// \param OffsetFromTop the spill offset from the top of the frame.
-/// \param [in] [out] Adjusted the current SP offset from the top of the frame.
+/// \param [in,out] Adjusted the current SP offset from the top of the frame.
static void IfNeededExtSP(MachineBasicBlock &MBB,
MachineBasicBlock::iterator MBBI, DebugLoc dl,
const TargetInstrInfo &TII, MachineModuleInfo *MMI,
@@ -98,7 +98,7 @@ static void IfNeededExtSP(MachineBasicBlock &MBB,
/// IfNeededLDAWSP emits the necessary LDAWSP instructions to move the SP only
/// as far as to make 'OffsetFromTop' reachable using an LDAWSP_lru6.
/// \param OffsetFromTop the spill offset from the top of the frame.
-/// \param [in] [out] RemainingAdj the current SP offset from the top of the frame.
+/// \param [in,out] RemainingAdj the current SP offset from the top of the frame.
static void IfNeededLDAWSP(MachineBasicBlock &MBB,
MachineBasicBlock::iterator MBBI, DebugLoc dl,
const TargetInstrInfo &TII, int OffsetFromTop,