Revision: 21620
Author:   jacob.bram...@arm.com
Date:     Tue Jun  3 07:37:16 2014 UTC
Log:      ARM64: Fix ASM_LOCATION and the like.

BUG=
R=u...@chromium.org

Review URL: https://codereview.chromium.org/308023007
http://code.google.com/p/v8/source/detail?r=21620

Modified:
 /branches/bleeding_edge/src/checks.h

=======================================
--- /branches/bleeding_edge/src/checks.h        Wed May 28 08:07:18 2014 UTC
+++ /branches/bleeding_edge/src/checks.h        Tue Jun  3 07:37:16 2014 UTC
@@ -8,6 +8,7 @@
 #include <string.h>

 #include "../include/v8stdint.h"
+#include "base/build_config.h"

extern "C" void V8_Fatal(const char* file, int line, const char* format, ...);

@@ -30,7 +31,8 @@
 #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
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to