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

tests: add sanity-check assembly test for every target #118708

Merged
merged 2 commits into from
Jan 17, 2024

Commits on Jan 17, 2024

  1. tests: add sanity-check assembly test for every target

    Adds a basic assembly test checking that each target can produce assembly
    and update the target tier policy to require this.
    
    Signed-off-by: David Wood <[email protected]>
    davidtwco committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    a87034c View commit details
    Browse the repository at this point in the history
  2. target: fix powerpc64-unknown-linux-musl datalayout

    In LLVM 17, PowerPC targets started including function pointer alignments
    in data layouts, and in Rust's update to that version (rust-lang#114048), we added
    the function pointer alignments. `powerpc64-unknown-linux-musl` had
    `Fi64` set but this seems incorrect, and the code in LLVM would always
    have computed `Fn32` because it is a MUSL target.
    
    Signed-off-by: David Wood <[email protected]>
    davidtwco committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    12c19a2 View commit details
    Browse the repository at this point in the history