diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2016-10-09 04:39:13 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2016-10-09 04:39:13 +0000 |
commit | cc723cccabfc74c93bf99458f1a92caff0fc9504 (patch) | |
tree | a6f215552667197bc7175f1511a65c6f646ac1b7 /llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | |
parent | 5c924d71173afc93aa0f0d115bd445a7496f4294 (diff) | |
download | bcm5719-llvm-cc723cccabfc74c93bf99458f1a92caff0fc9504.tar.gz bcm5719-llvm-cc723cccabfc74c93bf99458f1a92caff0fc9504.zip |
MC: Remove unused entities.
llvm-svn: 283691
Diffstat (limited to 'llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 2b210ddb07d..909f939b44f 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -752,7 +752,7 @@ public: /// getStartLoc - Get the location of the first token of this operand. SMLoc getStartLoc() const override { return StartLoc; } /// getEndLoc - Get the location of the last token of this operand. - SMLoc getEndLoc() const override { return EndLoc; } + 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); } |