mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Fix handling of 'g'. Closes 883
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29750 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f3a335cedf
commit
ad1ed016ce
@ -4187,6 +4187,9 @@ X86TargetLowering::getConstraintType(char ConstraintLetter) const {
|
||||
case 'S':
|
||||
case 'D':
|
||||
case 'c':
|
||||
case 'g': //FIXME: This over-constrains g. It should be replaced by rmi in
|
||||
// target independent code (I think this constraint is target
|
||||
// independent)
|
||||
return C_RegisterClass;
|
||||
default: return TargetLowering::getConstraintType(ConstraintLetter);
|
||||
}
|
||||
@ -4218,6 +4221,7 @@ getRegClassForInlineAsmConstraint(const std::string &Constraint,
|
||||
break;
|
||||
case 'r': // GENERAL_REGS
|
||||
case 'R': // LEGACY_REGS
|
||||
case 'g':
|
||||
if (VT == MVT::i32)
|
||||
return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
|
||||
X86::ESI, X86::EDI, X86::EBP, X86::ESP, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user