summaryrefslogtreecommitdiff
path: root/src/wasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm.h')
-rw-r--r--src/wasm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm.h b/src/wasm.h
index a5fc070e6..b3ae82bcf 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -2095,8 +2095,8 @@ public:
// One can explicitly set the debug location of an expression to
// nullopt to stop the propagation of debug locations.
std::unordered_map<Expression*, std::optional<DebugLocation>> debugLocations;
- std::set<DebugLocation> prologLocation;
- std::set<DebugLocation> epilogLocation;
+ std::optional<DebugLocation> prologLocation;
+ std::optional<DebugLocation> epilogLocation;
// General debugging info support: track instructions and the function itself.
std::unordered_map<Expression*, BinaryLocations::Span> expressionLocations;