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 {
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
};
enum { kBailoutTypesWithCodeEntry = SOFT + 1 };
struct Reason {
Reason(int r, const char* m, const char* 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