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

Unified Diff: src/vm/assembler_arm.cc

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments 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
« no previous file with comments | « src/vm/assembler_arm.h ('k') | src/vm/assembler_arm64_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/vm/assembler_arm.cc
diff --git a/src/vm/assembler_arm.cc b/src/vm/assembler_arm.cc
index c2a52eb4afded541a1db31e18d16f096e50ea9fe..f15fa13dcfde35e200318aa31112e8ebcfbc6b87 100644
--- a/src/vm/assembler_arm.cc
+++ b/src/vm/assembler_arm.cc
@@ -2,14 +2,14 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE.md file.
-#if defined(FLETCH_TARGET_ARM)
+#if defined(DARTINO_TARGET_ARM)
#include "src/vm/assembler.h" // NOLINT we don't include assembler_arm.h.
#include <stdio.h>
#include <stdarg.h>
-namespace fletch {
+namespace dartino {
int Label::position_counter_ = 0;
@@ -144,7 +144,7 @@ void Assembler::Print(const char* format, ...) {
}
case 'W': {
-#ifdef FLETCH_THUMB_ONLY
+#ifdef DARTINO_THUMB_ONLY
UNREACHABLE();
#else
WriteBack write_back = static_cast<WriteBack>(va_arg(arguments, int));
@@ -190,6 +190,6 @@ void Assembler::PrintOperand(const Operand* operand) {
ShiftTypeToString(operand->shift_type()), operand->shift_amount());
}
-} // namespace fletch
+} // namespace dartino
-#endif // defined(FLETCH_TARGET_ARM)
+#endif // defined(DARTINO_TARGET_ARM)
« no previous file with comments | « src/vm/assembler_arm.h ('k') | src/vm/assembler_arm64_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698