1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

llvm-mc/AsmMatcher: Fix thinko, Mem isn't a subclass of Imm.

llvm-svn: 78587
This commit is contained in:
Daniel Dunbar 2009-08-10 19:08:02 +00:00
parent 762e9641fd
commit 20829b121a

View File

@ -172,7 +172,7 @@ def ptr_rc_nosp : PointerLikeRegClass<1>;
//
def X86MemAsmOperand : AsmOperandClass {
let Name = "Mem";
let SuperClass = ImmAsmOperand;
let SuperClass = ?;
}
class X86MemOperand<string printMethod> : Operand<iPTR> {
let PrintMethod = printMethod;