Index: src/v8utils.h |
diff --git a/src/v8utils.h b/src/v8utils.h |
index 8661f9b88c2baba1cc3c656ab727a703d55887b8..ff9f8f2366fad716fada584adc2222d998c6e225 100644 |
--- a/src/v8utils.h |
+++ b/src/v8utils.h |
@@ -257,9 +257,9 @@ inline void MemsetPointer(T** dest, U* value, int counter) { |
a = b; // Fake assignment to check assignability. |
USE(a); |
#endif // DEBUG |
-#if defined(V8_HOST_ARCH_IA32) |
+#if V8_HOST_ARCH_IA32 |
#define STOS "stosl" |
-#elif defined(V8_HOST_ARCH_X64) |
+#elif V8_HOST_ARCH_X64 |
#define STOS "stosq" |
#endif |
#if defined(__native_client__) |