mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-16 16:37:42 +00:00
[arm] Fix r238921. We must handle Constraint_i too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238925 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ce375dc63a
commit
a57c862c9d
@ -3923,6 +3923,10 @@ SelectInlineAsmMemoryOperand(const SDValue &Op, unsigned ConstraintID,
|
||||
switch(ConstraintID) {
|
||||
default:
|
||||
llvm_unreachable("Unexpected asm memory constraint");
|
||||
case InlineAsm::Constraint_i:
|
||||
// FIXME: It seems strange that 'i' is needed here since it's supposed to
|
||||
// be an immediate and not a memory constraint.
|
||||
// Fallthrough.
|
||||
case InlineAsm::Constraint_m:
|
||||
case InlineAsm::Constraint_Q:
|
||||
case InlineAsm::Constraint_Um:
|
||||
|
Loading…
Reference in New Issue
Block a user