mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Use generic iPTR instead i32 to represent pointer type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28371 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c8999f2a0a
commit
af78ef526d
@ -94,7 +94,7 @@ def X86Wrapper : SDNode<"X86ISD::Wrapper", SDTX86Wrapper>;
|
||||
|
||||
// *mem - Operand definitions for the funky X86 addressing mode operands.
|
||||
//
|
||||
class X86MemOperand<string printMethod> : Operand<i32> {
|
||||
class X86MemOperand<string printMethod> : Operand<iPTR> {
|
||||
let PrintMethod = printMethod;
|
||||
let NumMIOperands = 4;
|
||||
let MIOperandInfo = (ops GR32, i8imm, GR32, i32imm);
|
||||
@ -131,8 +131,8 @@ def brtarget : Operand<OtherVT>;
|
||||
//
|
||||
|
||||
// Define X86 specific addressing mode.
|
||||
def addr : ComplexPattern<i32, 4, "SelectAddr", []>;
|
||||
def leaaddr : ComplexPattern<i32, 4, "SelectLEAAddr",
|
||||
def addr : ComplexPattern<iPTR, 4, "SelectAddr", []>;
|
||||
def leaaddr : ComplexPattern<iPTR, 4, "SelectLEAAddr",
|
||||
[add, mul, shl, frameindex]>;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
Loading…
x
Reference in New Issue
Block a user