[lld] 119f61a - [lld][WebAssembly] Remove unused method declaration. NFC
Sam Clegg via llvm-commits
llvm-commits at lists.llvm.org
Fri May 14 15:54:59 PDT 2021
Author: Sam Clegg
Date: 2021-05-14T15:54:33-07:00
New Revision: 119f61af3a500d6bae537bf11f2b29b6945003be
URL: https://github.com/llvm/llvm-project/commit/119f61af3a500d6bae537bf11f2b29b6945003be
DIFF: https://github.com/llvm/llvm-project/commit/119f61af3a500d6bae537bf11f2b29b6945003be.diff
LOG: [lld][WebAssembly] Remove unused method declaration. NFC
This method was removed in https://reviews.llvm.org/D102265
but the declaration was missed.
Added:
Modified:
lld/wasm/InputChunks.h
Removed:
################################################################################
diff --git a/lld/wasm/InputChunks.h b/lld/wasm/InputChunks.h
index d0195b5f8ceeb..5bf96df695d59 100644
--- a/lld/wasm/InputChunks.h
+++ b/lld/wasm/InputChunks.h
@@ -89,10 +89,6 @@ class InputChunk {
virtual ArrayRef<uint8_t> data() const = 0;
virtual uint64_t getTombstone() const { return 0; }
- // Verifies the existing data at relocation targets matches our expectations.
- // This is performed only debug builds as an extra sanity check.
- void verifyRelocTargets() const;
-
ArrayRef<WasmRelocation> relocations;
Kind sectionKind;
};
More information about the llvm-commits
mailing list