Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AArch64: Incorrect SVE double to int and float to long vector conversion #2

Merged

Commits on Nov 3, 2021

  1. Incorrect double to int and float to long vector conversion

    Like JDK-8276151, SVE vector double to int and float to long
    conversions have similar issue. According to Java language
    specification [1], we should convert double/float to
    integer/long directly, instead of converting to long/int and then
    narrowing/extending to target types. Test cases will be updated in
    JDK-8276151.
    
    [1] https://docs.oracle.com/javase/specs/jls/se17/html/jls-5.html#jls-5.1.3
    Ningsheng Jian committed Nov 3, 2021
    Configuration menu
    Copy the full SHA
    779ba7a View commit details
    Browse the repository at this point in the history