diff options
author | Jyotsna Verma <jverma@codeaurora.org> | 2013-01-29 18:42:41 +0000 |
---|---|---|
committer | Jyotsna Verma <jverma@codeaurora.org> | 2013-01-29 18:42:41 +0000 |
commit | 9c3846c99c8dd2aeddf5084ce4b8725c230216a0 (patch) | |
tree | 191448fbc765cf1776702a371081974486eb6886 /lib/Target/Hexagon/HexagonISelDAGToDAG.cpp | |
parent | 30c3bbe007854506202e112861009e8ca77ad6d4 (diff) |
Use multiclass for post-increment store instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173816 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Hexagon/HexagonISelDAGToDAG.cpp')
-rw-r--r-- | lib/Target/Hexagon/HexagonISelDAGToDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp b/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp index db292f2cd4..381032b8e9 100644 --- a/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp +++ b/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp @@ -608,8 +608,8 @@ SDNode *HexagonDAGToDAGISel::SelectIndexedStore(StoreSDNode *ST, DebugLoc dl) { // Offset value must be within representable range // and must have correct alignment properties. if (TII->isValidAutoIncImm(StoredVT, Val)) { - SDValue Ops[] = { Value, Base, - CurDAG->getTargetConstant(Val, MVT::i32), Chain}; + SDValue Ops[] = {Base, CurDAG->getTargetConstant(Val, MVT::i32), Value, + Chain}; unsigned Opcode = 0; // Figure out the post inc version of opcode. |