aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-09-14 08:31:25 +0000
committerEric Christopher <echristo@apple.com>2010-09-14 08:31:25 +0000
commit23da0b23a3f01d9a46e54a4ba6fc6e4b42eda7c1 (patch)
treeb4de7121439cc061fd0ab1e2ea127f4e621f319f
parent08047f616977f204df6054c481601f2237cc308d (diff)
Fix QOpcode assignment to Opc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113837 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMISelDAGToDAG.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMISelDAGToDAG.cpp b/lib/Target/ARM/ARMISelDAGToDAG.cpp
index 5cfeb290fe..57c41c414d 100644
--- a/lib/Target/ARM/ARMISelDAGToDAG.cpp
+++ b/lib/Target/ARM/ARMISelDAGToDAG.cpp
@@ -1278,8 +1278,8 @@ SDNode *ARMDAGToDAGISel::SelectVLDSTLane(SDNode *N, bool IsLoad,
Ops.push_back(MemAddr);
Ops.push_back(Align);
- unsigned Opc = (is64BitVector ? DOpcodes[OpcodeIndex] :
- Opc = QOpcodes[OpcodeIndex]);
+ unsigned Opc = (is64BitVector ? DOpcodes[OpcodeIndex] :
+ QOpcodes[OpcodeIndex]);
SDValue SuperReg;
SDValue V0 = N->getOperand(0+3);