diff options
author | Eric Christopher <echristo@apple.com> | 2010-09-14 08:31:25 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-09-14 08:31:25 +0000 |
commit | 726838a3e5d6fe9f2e6d596878ad84cf5cf23241 (patch) | |
tree | 9c85ceaf56c925d7ee88629c23a5288aec2e1c54 /llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp | |
parent | 824c2f537cb22c91575c0c7d6642244f6e5baaea (diff) | |
download | bcm5719-llvm-726838a3e5d6fe9f2e6d596878ad84cf5cf23241.tar.gz bcm5719-llvm-726838a3e5d6fe9f2e6d596878ad84cf5cf23241.zip |
Fix QOpcode assignment to Opc.
llvm-svn: 113837
Diffstat (limited to 'llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp b/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp index 5cfeb290fe2..57c41c414da 100644 --- a/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp +++ b/llvm/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); |