mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 06:33:21 +00:00
Fix Thumb encoding of VMOV (scalar to ARM core register). The encoding is
the same as ARM except that the condition code field is always set to ARMCC::AL. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107107 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e4e7d56396
commit
5cdede43e9
@ -1600,7 +1600,7 @@ void ARMCodeEmitter::emitNEONGetLaneInstruction(const MachineInstr &MI) {
|
|||||||
unsigned Binary = getBinaryCodeForInstr(MI);
|
unsigned Binary = getBinaryCodeForInstr(MI);
|
||||||
|
|
||||||
// Set the conditional execution predicate
|
// Set the conditional execution predicate
|
||||||
Binary |= II->getPredicate(&MI) << ARMII::CondShift;
|
Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
|
||||||
|
|
||||||
unsigned RegT = MI.getOperand(0).getReg();
|
unsigned RegT = MI.getOperand(0).getReg();
|
||||||
RegT = ARMRegisterInfo::getRegisterNumbering(RegT);
|
RegT = ARMRegisterInfo::getRegisterNumbering(RegT);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user