File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 12
12
13
13
// This implementation is only usable on an x64 host with non-x64 target (i.e. a
14
14
// simulator build on x64).
15
+
16
+ #pragma message("DEBUG INFO")
17
+
18
+ #if defined(_M_X64)
19
+ #pragma message("_M_X64: " _M_X64)
20
+ #else
21
+ #pragma message("_M_X64 is undefined")
22
+ #endif
23
+
24
+ #if defined(__x86_64__)
25
+ #pragma message("__x86_64__: " __x86_64__)
26
+ #else
27
+ #pragma message("__x86_64__ is undefined")
28
+ #endif
29
+
30
+ #if defined(V8_TARGET_ARCH_X64)
31
+ #pragma message("V8_TARGET_ARCH_X64: " V8_TARGET_ARCH_X64)
32
+ #else
33
+ #pragma message("V8_TARGET_ARCH_X64 is undefined")
34
+ #endif
35
+
15
36
#if (!defined(_M_X64) && !defined(__x86_64__)) || defined(V8_TARGET_ARCH_X64)
16
37
#error "Do only include this file on simulator builds on x64."
17
38
#endif
You can’t perform that action at this time.
0 commit comments