forked from OSchip/llvm-project
[lldb][AArch64] Fix an unused variable warning in release builds. NFC
This commit is contained in:
parent
883b0d5b7f
commit
82d4f39f34
|
@ -290,6 +290,7 @@ MemoryTagManagerAArch64MTE::UnpackTagsFromCoreFileSegment(
|
|||
const size_t bytes_copied =
|
||||
reader(tag_segment_data_address + file_offset_in_bytes, tag_bytes_to_read,
|
||||
tag_data.data());
|
||||
(void)bytes_copied;
|
||||
assert(bytes_copied == tag_bytes_to_read);
|
||||
|
||||
std::vector<lldb::addr_t> tags;
|
||||
|
|
Loading…
Reference in New Issue