diff options
author | Kazu Hirata <kazu@google.com> | 2022-02-06 10:54:44 -0800 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2022-02-06 10:54:44 -0800 |
commit | 3a8c51480ff881ff7fcd5831bf1b31d3c66519ed (patch) | |
tree | c1a0bb087f5e8965e26f02be9a8ee9a77db015b9 /llvm/lib/CodeGen/LiveDebugValues/VarLocBasedImpl.cpp | |
parent | 631b94cc22a83205c1d26baadb579b9c5576c8eb (diff) | |
download | llvm-3a8c51480ff881ff7fcd5831bf1b31d3c66519ed.zip llvm-3a8c51480ff881ff7fcd5831bf1b31d3c66519ed.tar.gz llvm-3a8c51480ff881ff7fcd5831bf1b31d3c66519ed.tar.bz2 |
[CodeGen] Use = default (NFC)
Identified with modernize-use-equals-default
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugValues/VarLocBasedImpl.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugValues/VarLocBasedImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugValues/VarLocBasedImpl.cpp b/llvm/lib/CodeGen/LiveDebugValues/VarLocBasedImpl.cpp index 42a0967..ff11c79 100644 --- a/llvm/lib/CodeGen/LiveDebugValues/VarLocBasedImpl.cpp +++ b/llvm/lib/CodeGen/LiveDebugValues/VarLocBasedImpl.cpp @@ -1035,9 +1035,9 @@ public: // Implementation //===----------------------------------------------------------------------===// -VarLocBasedLDV::VarLocBasedLDV() { } +VarLocBasedLDV::VarLocBasedLDV() = default; -VarLocBasedLDV::~VarLocBasedLDV() { } +VarLocBasedLDV::~VarLocBasedLDV() = default; /// Erase a variable from the set of open ranges, and additionally erase any /// fragments that may overlap it. If the VarLoc is a backup location, erase |