-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
…6ToFloat yields different result than the interpreter Reviewed-by: sviswanathan, jbhateja, vlivanov
- Loading branch information
There are no files selected for viewing
3 comments
on commit 8cfd74f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/backport jdk20u
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vnkozlov Could not automatically backport 8cfd74f7
to openjdk/jdk20u due to conflicts in the following files:
- src/hotspot/cpu/arm/templateInterpreterGenerator_arm.cpp
- src/hotspot/cpu/riscv/vm_version_riscv.cpp
- src/hotspot/share/runtime/stubRoutines.cpp
Please fetch the appropriate branch/commit and manually resolve these conflicts by using the following commands in your personal fork of openjdk/jdk20u. Note: these commands are just some suggestions and you can use other equivalent commands you know.
# Fetch the up-to-date version of the target branch
$ git fetch --no-tags https://git.openjdk.org/jdk20u.git master:master
# Check out the target branch and create your own branch to backport
$ git checkout master
$ git checkout -b vnkozlov-backport-8cfd74f7
# Fetch the commit you want to backport
$ git fetch --no-tags https://git.openjdk.org/jdk.git 8cfd74f76afc9e5d50c52104fef9974784718dd4
# Backport the commit
$ git cherry-pick --no-commit 8cfd74f76afc9e5d50c52104fef9974784718dd4
# Resolve conflicts now
# Commit the files you have modified
$ git add files/with/resolved/conflicts
$ git commit -m 'Backport 8cfd74f76afc9e5d50c52104fef9974784718dd4'
Once you have resolved the conflicts as explained above continue with creating a pull request towards the openjdk/jdk20u with the title Backport 8cfd74f76afc9e5d50c52104fef9974784718dd4
.
Do we need this interpreter intrinsic at all?