We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following code will compile:
#![feature(repr_simd, platform_intrinsics)] #[repr(simd)] struct f64x2(f64, f64); extern "platform-intrinsic" { fn x86_mm_movemask_pd(x: f64x2, y: f64x2, z: f64x2) -> i32; }
but it shouldn't because the function takes only one f64x2 as parameter and it crashes when executed:
f64x2
rustc: /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/llvm/lib/IR/Instructions.cpp:234: void llvm::CallInst::init(llvm::FunctionType*, llvm::Value*, llvm::ArrayRef<llvm::Value*>, const llvm::Twine&): Assertion `(Args.size() == FTy->getNumParams() || (FTy->isVarArg() && Args.size() > FTy->getNumParams())) && "Calling a function with bad signature!"' failed. Aborted (core dumped) playpen: application terminated with error code 134
As long as the awaited parameters are good, the compiler doesn't complain whereas it should.
The text was updated successfully, but these errors were encountered:
misdeclaring foreign functions is always a bad idea, but I guess we can handle this case.
Sorry, something went wrong.
It's the only case where nothing comes out from the compiler (I was quite surprised at the beggining).
I'm working on it.
Auto merge of #28103 - GuillaumeGomez:fix-intrinsic, r=huonw
811868e
Fixes #28062
No branches or pull requests
The following code will compile:
but it shouldn't because the function takes only one
f64x2
as parameter and it crashes when executed:As long as the awaited parameters are good, the compiler doesn't complain whereas it should.
The text was updated successfully, but these errors were encountered: