[New Bug] [aarch64] [hotspot] src/cpu/aarch64/vm/templateInterpreterGenerator_aarch64.cpp
Daniel Stewart
daniel.stewart at linaro.org
Fri Oct 28 14:35:43 UTC 2016
I'm new to OpenJDK and not sure where to send this, so I thought I'd start
with this list.
There is a bug that occurred 3 days ago in the jdk9/dev branch
in src/cpu/aarch64/vm/templateInterpreterGenerator_aarch64.cpp. I am doing
nightly aarch64 builds of jdk9/dev branch and started seeing it 3 days ago.
This bug does not appear in the jdk9/hs branch.
The actual changeset that appears to have caused the issue is 12188. I've
included a simple fix below, as this is simply a matter of a missing
#endif.
Thanks and my apologies if this is the wrong mailing list.
Daniel Stewart
--
diff -r c30b6e2d2ec4
src/cpu/aarch64/vm/templateInterpreterGenerator_aarch64.cpp
--- a/src/cpu/aarch64/vm/templateInterpreterGenerator_aarch64.cpp Thu
Oct 27 21:22:32 2016 +0000
+++ b/src/cpu/aarch64/vm/templateInterpreterGenerator_aarch64.cpp Fri
Oct 28 14:33:28 2016 +0000
@@ -476,6 +476,7 @@
}
#endif
}
+#endif
// handle exceptions
{
Label L;
More information about the jdk9-dev
mailing list