You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#![feature(unboxed_closures)]
#[allow(unused_variables)]
fn main() {
let a = Some(5u);
let b = box move || { println!("{}", a); };
}
produces this output:
Stored value type does not match pointer operand type!
store %"enum.core::option::Option<[uint]>[#3]" %6, %"enum.core::option::Option<[uint]>[#3]"** %7
%"enum.core::option::Option<[uint]>[#3]"*LLVM ERROR: Broken function found, compilation aborted!
#![feature(unboxed_closures)]
#[allow(unused_variables)]
fn main() {
let a = 5u;
let b = move || { a };
}
which on my computer gives
“rustc llvm.rs ” terminated by signal SIGILL (Illegal instruction)
and on the playpen
rustc: /build/rust-git/src/rust/src/llvm/include/llvm/Support/Casting.h:237: typename llvm::cast_retty<X, Y*>::ret_type llvm::cast(Y*) [with X = llvm::PointerType; Y = llvm::Type; typename llvm::cast_retty<X, Y*>::ret_type = llvm::PointerType*]: Assertion `isa<X>(Val) && "cast<Ty>() argument of incompatible type!"' failed.
I wonder if it's related to #19575 : both includes move || closures, while this case doesn't require -g flag, and I discovered this one while trying to make a minimal example of what appears to be #19575.
This sample code:
produces this output:
On rustc 5263600.
The text was updated successfully, but these errors were encountered: