diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-15 19:39:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-15 19:39:23 +0000 |
commit | 54482b472a888c9efe003ad694ecf47b21878f0e (patch) | |
tree | e1347f01f96931e2824b836b23c77311ddda77cb /include | |
parent | 0a3c5a54a144fd05a7feeb5c9e58da36edbe888c (diff) | |
download | external_llvm-54482b472a888c9efe003ad694ecf47b21878f0e.zip external_llvm-54482b472a888c9efe003ad694ecf47b21878f0e.tar.gz external_llvm-54482b472a888c9efe003ad694ecf47b21878f0e.tar.bz2 |
fix a bug in range information for $42, eliminate an
unneeded argument from ParseExpression.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93536 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/MC/MCAsmParser.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/MC/MCAsmParser.h b/include/llvm/MC/MCAsmParser.h index a3c10f9..f1ce323 100644 --- a/include/llvm/MC/MCAsmParser.h +++ b/include/llvm/MC/MCAsmParser.h @@ -55,8 +55,7 @@ public: /// @param Res - The value of the expression. The result is undefined /// on error. /// @result - False on success. - virtual bool ParseExpression(const MCExpr *&Res, - SMLoc &StartLoc, SMLoc &EndLoc) = 0; + virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0; bool ParseExpression(const MCExpr *&Res); /// ParseParenExpression - Parse an arbitrary expression, assuming that an |