Description
IIUC given:
#ifdef AARCH64
#include "precompiled.hpp"
VS will ignore the ifdef as it appears before the precompiled header include. Hence the aarch64 code gets compiled on x86.
#ifdef AARCH64
#include "precompiled.hpp"
VS will ignore the ifdef as it appears before the precompiled header include. Hence the aarch64 code gets compiled on x86.
Attachments
Issue Links
- relates to
-
JDK-8252684 Move the AArch64 assember test under test/hotspot/gtest
- Resolved