| Index: runtime/vm/precompiler.cc
|
| diff --git a/runtime/vm/precompiler.cc b/runtime/vm/precompiler.cc
|
| index cc527012e08b09d83ea187d8e5f641c05ada2ed2..d9800acbd33ae36622f00424aeaa3718d0e85452 100644
|
| --- a/runtime/vm/precompiler.cc
|
| +++ b/runtime/vm/precompiler.cc
|
| @@ -2798,11 +2798,10 @@ bool PrecompileParsedFunctionHelper::Compile(CompilationPipeline* pipeline) {
|
| HANDLESCOPE(thread());
|
|
|
| // We may reattempt compilation if the function needs to be assembled using
|
| - // far branches on ARM and MIPS. In the else branch of the setjmp call,
|
| - // done is set to false, and use_far_branches is set to true if there is a
|
| - // longjmp from the ARM or MIPS assemblers. In all other paths through this
|
| - // while loop, done is set to true. use_far_branches is always false on ia32
|
| - // and x64.
|
| + // far branches on ARM. In the else branch of the setjmp call, done is set to
|
| + // false, and use_far_branches is set to true if there is a longjmp from the
|
| + // ARM assembler. In all other paths through this while loop, done is set to
|
| + // true. use_far_branches is always false on ia32 and x64.
|
| bool done = false;
|
| // volatile because the variable may be clobbered by a longjmp.
|
| volatile bool use_far_branches = false;
|
|
|