summaryrefslogtreecommitdiff
path: root/src/wasm-traversal.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2023-08-31 15:41:03 -0700
committerGitHub <noreply@github.com>2023-08-31 15:41:03 -0700
commit126d4fab3e00f003a06dac23f96aa70cbb75aa67 (patch)
tree21a12fe65130861c7d53b80aba93ba21c3392c27 /src/wasm-traversal.h
parent0d3c2eeb634913643f2cade4b5d738962b2308c2 (diff)
downloadbinaryen-126d4fab3e00f003a06dac23f96aa70cbb75aa67.tar.gz
binaryen-126d4fab3e00f003a06dac23f96aa70cbb75aa67.tar.bz2
binaryen-126d4fab3e00f003a06dac23f96aa70cbb75aa67.zip
DebugInfo: Don't trample in replaceCurrent() (#5915)
Copy the old expression's debug info if the new has none. But if the new has its own, trust that. Followup to #5914
Diffstat (limited to 'src/wasm-traversal.h')
-rw-r--r--src/wasm-traversal.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wasm-traversal.h b/src/wasm-traversal.h
index 80378242a..212ded365 100644
--- a/src/wasm-traversal.h
+++ b/src/wasm-traversal.h
@@ -124,7 +124,12 @@ struct Walker : public VisitorType {
// Copy debug info, if present.
if (currFunction) {
auto& debugLocations = currFunction->debugLocations;
- if (!debugLocations.empty()) {
+ // Early exit if there is no debug info at all. Also, leave if we already
+ // have debug info on the new expression, which we don't want to trample:
+ // if there is no debug info we do want to copy, as a replacement
+ // operation suggests the new code plays the same role (it is an optimized
+ // version of the old), but if the code is already annotated, trust that.
+ if (!debugLocations.empty() && !debugLocations.count(expression)) {
auto* curr = getCurrent();
auto iter = debugLocations.find(curr);
if (iter != debugLocations.end()) {