diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2016-10-10 22:49:37 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2016-10-10 22:49:37 +0000 |
commit | 0da86301ad06bcaff50559260657c4a7d6e5c579 (patch) | |
tree | 1cc77dbcff03b8b7240efb85914d1e5747cfe204 /llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | |
parent | 400892bd48bb49b534c11b5b7a34e8f443098459 (diff) | |
download | bcm5719-llvm-0da86301ad06bcaff50559260657c4a7d6e5c579.tar.gz bcm5719-llvm-0da86301ad06bcaff50559260657c4a7d6e5c579.zip |
Revert r283690, "MC: Remove unused entities."
llvm-svn: 283814
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 1160a6c4f96..8c9318b4061 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 { return EndLoc; } + SMLoc getEndLoc() const override { return EndLoc; } /// getLocRange - Get the range between the first and last token of this /// operand. SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); } |