Chromium Code Reviews| Index: src/runtime/runtime-internal.cc |
| diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc |
| index c58266ab6f34e4db260cd3aca2d4beb88b434c48..2b254e8b964fec57774c3ab87accd1d6435d6afb 100644 |
| --- a/src/runtime/runtime-internal.cc |
| +++ b/src/runtime/runtime-internal.cc |
| @@ -26,7 +26,8 @@ RUNTIME_FUNCTION(Runtime_CheckIsBootstrapping) { |
| RUNTIME_FUNCTION(Runtime_Throw) { |
| HandleScope scope(isolate); |
| DCHECK(args.length() == 1); |
| - return isolate->Throw(args[0]); |
| + Object* ret = isolate->Throw(args[0]); |
|
Benedikt Meurer
2015/07/28 04:57:17
What is the motivation for this change?
|
| + return ret; |
| } |