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

Unified Diff: tools/utils.py

Issue 1559223003: Treat R19 is a C preserved register, fixing crashing on Linux ARM64. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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
« runtime/vm/constants_arm64.h ('K') | « tools/build.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/utils.py
diff --git a/tools/utils.py b/tools/utils.py
index efcb886bfc5935b28d2e2b3e5945730055732d7f..aaef94c40c3d7cc7352e0d3a48368f36b3c5d53b 100644
--- a/tools/utils.py
+++ b/tools/utils.py
@@ -626,6 +626,8 @@ def CheckedInSdkExecutable():
name = 'dart-mips'
elif arch == 'arm':
name = 'dart-arm'
+ elif arch == 'arm64':
+ name = 'dart-arm'
return os.path.join(CheckedInSdkPath(), 'bin', name)
« runtime/vm/constants_arm64.h ('K') | « tools/build.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698