From 4ebfbc8e6c0f850d4ce3ec9e8bc32ea033bb5760 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 16 Jan 2009 20:26:53 +0000 Subject: [PATCH] remove a dead method. llvm-svn: 62354 --- include/llvm/Assembly/Parser.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h index 17484aee34e..e4a38e41b67 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; }