mirror of
https://github.com/corda/corda.git
synced 2025-01-23 04:48:09 +00:00
specify register contraints for Negate instruction in MyArchitecture::plan
This commit is contained in:
parent
96a7c71c30
commit
54cda3ca61
@ -2069,6 +2069,9 @@ class MyArchitecture: public Assembler::Architecture {
|
||||
case Negate:
|
||||
*aTypeMask = (1 << RegisterOperand);
|
||||
*bTypeMask = (1 << RegisterOperand);
|
||||
*aRegisterMask = (static_cast<uint64_t>(1) << (rdx + 32))
|
||||
| (static_cast<uint64_t>(1) << rax);
|
||||
*bRegisterMask = *aRegisterMask;
|
||||
break;
|
||||
|
||||
case Move:
|
||||
|
Loading…
Reference in New Issue
Block a user