| Index: src/full-codegen/ia32/full-codegen-ia32.cc
|
| diff --git a/src/full-codegen/ia32/full-codegen-ia32.cc b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| index 11f85025ee14033a318063d67c2d53a537a8f5ea..dc8a7fa5ea55d5504bc3e5afe41a2b0e19c811e5 100644
|
| --- a/src/full-codegen/ia32/full-codegen-ia32.cc
|
| +++ b/src/full-codegen/ia32/full-codegen-ia32.cc
|
| @@ -1746,7 +1746,8 @@ void FullCodeGenerator::VisitYield(Yield* expr) {
|
| EmitUnwindAndReturn();
|
|
|
| __ bind(&exception);
|
| - __ CallRuntime(Runtime::kThrow);
|
| + __ CallRuntime(expr->rethrow_on_exception() ? Runtime::kReThrow
|
| + : Runtime::kThrow);
|
|
|
| __ bind(&suspend);
|
| OperandStackDepthIncrement(1); // Not popped on this path.
|
|
|