From: Chad Rosier Date: Tue, 11 Sep 2012 23:20:20 +0000 (+0000) Subject: Add documentation. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2a3fcb382ef43374327b7b7672fe1e1e178041da;p=oota-llvm.git Add documentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163658 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCParser/MCParsedAsmOperand.h b/include/llvm/MC/MCParser/MCParsedAsmOperand.h index 0e2d46eecef..369bc72ff61 100644 --- a/include/llvm/MC/MCParser/MCParsedAsmOperand.h +++ b/include/llvm/MC/MCParser/MCParsedAsmOperand.h @@ -23,9 +23,13 @@ public: MCParsedAsmOperand() {} virtual ~MCParsedAsmOperand() {} + /// isToken - Is this a token operand? virtual bool isToken() const = 0; + /// isImm - Is this an immediate operand? virtual bool isImm() const = 0; + /// isReg - Is this a register operand? virtual bool isReg() const = 0; + /// isMem - Is this a memory operand? virtual bool isMem() const = 0; /// getStartLoc - Get the location of the first token of this operand.