summaryrefslogtreecommitdiff
path: root/deps/v8/src/wasm/wasm-tier.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/wasm/wasm-tier.h')
-rw-r--r--deps/v8/src/wasm/wasm-tier.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/wasm/wasm-tier.h b/deps/v8/src/wasm/wasm-tier.h
index 51c0adedde..afd106b017 100644
--- a/deps/v8/src/wasm/wasm-tier.h
+++ b/deps/v8/src/wasm/wasm-tier.h
@@ -37,13 +37,13 @@ inline const char* ExecutionTierToString(ExecutionTier tier) {
// the code also contains breakpoints, and {kForStepping} for code that is
// flooded with breakpoints.
enum ForDebugging : int8_t {
- kNoDebugging = 0,
+ kNotForDebugging = 0,
kForDebugging,
kWithBreakpoints,
kForStepping
};
-enum TieringState : int8_t { kTieredUp, kTieredDown };
+enum DebugState : bool { kNotDebugging = false, kDebugging = true };
} // namespace wasm
} // namespace internal