On Mon, 23 Nov 2020 13:19:23 GMT, Aleksey Shipilev <sh...@openjdk.org> wrote:
>> Jorn Vernee has refreshed the contents of this pull request, and previous >> commits have been removed. The incremental views will show differences >> compared to the previous content of the PR. > > src/hotspot/cpu/x86/universalNativeInvoker_x86.cpp line 132: > >> 130: __ ret(0); >> 131: #else >> 132: __ hlt(); // NYI > > "Not Implemented Yet" is "NIY". But then there is a macro you can use here: > `Unimplemented()`. Was going for "Not Yet Implemented" (this seems to be more common in existing code) I'll change it to use `Unimplemented();` ------------- PR: https://git.openjdk.java.net/jdk/pull/1266