diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-16 20:26:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-16 20:26:53 +0000 |
commit | a21a8607e4d35c9e6d6ed276689e84651e602231 (patch) | |
tree | 0a049045a04318fecccfc100b74c6b54c026b147 /include/llvm/Assembly | |
parent | 9029cb836304cd2848f589dc79373d9b67eb48e0 (diff) | |
download | external_llvm-a21a8607e4d35c9e6d6ed276689e84651e602231.zip external_llvm-a21a8607e4d35c9e6d6ed276689e84651e602231.tar.gz external_llvm-a21a8607e4d35c9e6d6ed276689e84651e602231.tar.bz2 |
remove a dead method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r-- | include/llvm/Assembly/Parser.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h index 17484ae..e4a38e4 100644 --- a/include/llvm/Assembly/Parser.h +++ b/include/llvm/Assembly/Parser.h @@ -61,12 +61,7 @@ public: void setFilename(const std::string &F) { Filename = F; } - // getMessage - Return the message passed in at construction time plus extra - // information extracted from the options used to parse with... - // - const std::string getMessage() const; - - inline const std::string &getRawMessage() const { // Just the raw message... + inline const std::string &getRawMessage() const { // Just the raw message. return Message; } |