Reviewers: ulan, jochen,

Description:
ARM64: Fix ASM_LOCATION and the like.

BUG=

Please review this at https://codereview.chromium.org/308023007/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -1 lines):
  M src/checks.h


Index: src/checks.h
diff --git a/src/checks.h b/src/checks.h
index bc599acb1d136c5c91a2f5934d8954199d2b5463..4e0a0ce326c4d32d95ba505ec457de09b399fea5 100644
--- a/src/checks.h
+++ b/src/checks.h
@@ -30,7 +30,8 @@ extern "C" void V8_Fatal(const char* file, int line, const char* format, ...);
 #endif

 // Simulator specific helpers.
-#if defined(USE_SIMULATOR) && defined(V8_TARGET_ARCH_ARM64)
+// We can't use USE_SIMULATOR here because it isn't defined yet.
+#if V8_TARGET_ARCH_ARM64 && !V8_HOST_ARCH_ARM64
   // TODO(all): If possible automatically prepend an indicator like
   // UNIMPLEMENTED or LOCATION.
#define ASM_UNIMPLEMENTED(message) \


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to