Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: runtime/vm/precompiler.cc

Issue 2858623002: Remove MIPS support (Closed)
Patch Set: Merge and cleanup Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/os_win.cc ('k') | runtime/vm/profiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « runtime/vm/os_win.cc ('k') | runtime/vm/profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698