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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78587 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-08-10 19:08:02 +00:00
parent d7de19ad7b
commit 8e00117e04

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;