| Index: src/ia32/lithium-codegen-ia32.cc
|
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc
|
| index f262fd6ce4466916c80836df7d0fefd420ad9086..b6244af4129a3349a7df107922128d18706631c9 100644
|
| --- a/src/ia32/lithium-codegen-ia32.cc
|
| +++ b/src/ia32/lithium-codegen-ia32.cc
|
| @@ -3500,6 +3500,11 @@ void LCodeGen::DoApplyArguments(LApplyArguments* instr) {
|
| }
|
|
|
|
|
| +void LCodeGen::DoDebugBreak(LDebugBreak* instr) {
|
| + __ int3();
|
| +}
|
| +
|
| +
|
| void LCodeGen::DoPushArgument(LPushArgument* instr) {
|
| LOperand* argument = instr->value();
|
| EmitPushTaggedOperand(argument);
|
|
|