Add comment.

llvm-svn: 164415
This commit is contained in:
Chad Rosier 2012-09-21 21:08:46 +00:00
parent 143d0f7371
commit 3d325cf3f1
1 changed files with 2 additions and 1 deletions

View File

@ -202,7 +202,8 @@ struct X86Operand : public MCParsedAsmOperand {
SMLoc getStartLoc() const { return StartLoc; }
/// getEndLoc - Get the location of the last token of this operand.
SMLoc getEndLoc() const { return EndLoc; }
/// getLocRange - Get the range between the first and last token of this
/// operand.
SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
virtual void print(raw_ostream &OS) const {}