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 30ba674391
commit 0afe2cc097
1 changed files with 1 additions and 1 deletions

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;