Index: src/deoptimizer.h |
diff --git a/src/deoptimizer.h b/src/deoptimizer.h |
index b14c3697418a7beb27c980f74eac43811c6c5391..47412f47526e4e6ec803322bfccab96c9bb2218a 100644 |
--- a/src/deoptimizer.h |
+++ b/src/deoptimizer.h |
@@ -95,11 +95,10 @@ class Deoptimizer : public Malloced { |
SOFT, |
// This last bailout type is not really a bailout, but used by the |
// debugger to deoptimize stack frames to allow inspection. |
- DEBUGGER |
+ DEBUGGER, |
+ kBailoutTypesWithCodeEntry = SOFT + 1 |
}; |
- static const int kBailoutTypesWithCodeEntry = SOFT + 1; |
- |
struct Reason { |
Reason(int r, const char* m, const char* d) |
: raw_position(r), mnemonic(m), detail(d) {} |