diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-09-29 10:04:15 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-09-29 10:05:12 -0700 |
commit | b4968c7001c2d7e2e607bef1bb11ae8f076e47e0 (patch) | |
tree | 6ac295bf70f89d2a3f899a33a43efabc5d101ca7 | |
parent | d8ba6b4ab3eceb6bbcdf4371d4ffaab9d1a5cebe (diff) | |
download | llvm-b4968c7001c2d7e2e607bef1bb11ae8f076e47e0.zip llvm-b4968c7001c2d7e2e607bef1bb11ae8f076e47e0.tar.gz llvm-b4968c7001c2d7e2e607bef1bb11ae8f076e47e0.tar.bz2 |
[lldb] Remove redundant ctor call (NFC)
As pointed out by Pavel in D88249.
-rw-r--r-- | lldb/source/API/SBValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBValue.cpp b/lldb/source/API/SBValue.cpp index 63518b4..0a95cf4 100644 --- a/lldb/source/API/SBValue.cpp +++ b/lldb/source/API/SBValue.cpp @@ -1356,7 +1356,7 @@ lldb::SBAddress SBValue::GetAddress() { } } - return LLDB_RECORD_RESULT(SBAddress(Address(addr))); + return LLDB_RECORD_RESULT(SBAddress(addr)); } lldb::SBData SBValue::GetPointeeData(uint32_t item_idx, uint32_t item_count) { |