Commit 6a4c0a3b authored by Benedikt Meurer's avatar Benedikt Meurer

Make GCC happy again.

R=svenpanne@chromium.org

Review URL: https://codereview.chromium.org/889743003

Cr-Commit-Position: refs/heads/master@{#26341}
parent 0deaa4b6
...@@ -95,11 +95,10 @@ class Deoptimizer : public Malloced { ...@@ -95,11 +95,10 @@ class Deoptimizer : public Malloced {
SOFT, SOFT,
// This last bailout type is not really a bailout, but used by the // This last bailout type is not really a bailout, but used by the
// debugger to deoptimize stack frames to allow inspection. // debugger to deoptimize stack frames to allow inspection.
DEBUGGER DEBUGGER,
kBailoutTypesWithCodeEntry = SOFT + 1
}; };
enum { kBailoutTypesWithCodeEntry = SOFT + 1 };
struct Reason { struct Reason {
Reason(int r, const char* m, const char* d) Reason(int r, const char* m, const char* d)
: raw_position(r), mnemonic(m), detail(d) {} : raw_position(r), mnemonic(m), detail(d) {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment