-
Notifications
You must be signed in to change notification settings - Fork 13.6k
regression test for intrinsics may not inline properly on pclmulqdq #145001
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
base: master
Are you sure you want to change the base?
Conversation
rustbot has assigned @Mark-Simulacrum. Use |
Since Nikita requested the test |
@bors r+ |
regression test for intrinsics may not inline properly on pclmulqdq https://rust.godbolt.org/z/dWsa9ET99 Fixes rust-lang#139029
regression test for intrinsics may not inline properly on pclmulqdq https://rust.godbolt.org/z/dWsa9ET99 Fixes rust-lang#139029
Rollup of 7 pull requests Successful merges: - #144039 (Use `tcx.short_string()` in more diagnostics) - #144192 (atomicrmw on pointers: move integer-pointer cast hacks into backend) - #144823 (coverage: Extract HIR-related helper code out of the main module) - #144987 (Enable f16 and f128 on targets that were fixed in LLVM21) - #145001 (regression test for intrinsics may not inline properly on pclmulqdq) - #145080 (Escape diff strings in MIR dataflow graphviz) - #145083 (Fix cross-compilation of Cargo) r? `@ghost` `@rustbot` modify labels: rollup
@bors r- Failed in #145090 (comment) |
Maybe this needs a |
The problem here appears to be an open-ended |
// CHECK-NOT: call | ||
// CHECK: call <2 x i64> @llvm.x86.pclmulqdq | ||
// CHECK: call <2 x i64> @llvm.x86.pclmulqdq | ||
// CHECK-NOT: call |
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.
The problem is that this can match the nocallback
attribute. I think we can avoid it by adding an extra // CHECK: ret
after it.
https://rust.godbolt.org/z/dWsa9ET99
Fixes #139029