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

LLVM assert on associated type with trait object. #21426

Closed
KokaKiwi opened this issue Jan 20, 2015 · 3 comments
Closed

LLVM assert on associated type with trait object. #21426

KokaKiwi opened this issue Jan 20, 2015 · 3 comments
Labels
E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added. I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️

Comments

@KokaKiwi
Copy link

The following code:

pub fn handle(_data: &[u8]) {}

pub fn handle_opt(iter: &mut Iterator<Item = &[u8]>) {
    for data in *iter {
        handle(data);
    }
}

give the following LLVM assert error:

$ rustc --crate-type lib lib.rs
rustc: /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/llvm/lib/IR/Instructions.cpp:281: void llvm::CallInst::init(llvm::Value*, llvm::ArrayRef<llvm::Value*>, const llvm::Twine&): Assertion `(i >= FTy->getNumParams() || FTy->getParamType(i) == Args[i]->getType()) && "Calling a function with a bad signature!"' failed.

I really have no idea what's the LLVM IR code generated which cause this error, as I don't know how to disable LLVM IR checks at compile-time :/

My Rust version:

$ rustc -Vv
rustc 1.0.0-nightly (f4f10dba2 2015-01-17 20:31:08 +0000)
binary: rustc
commit-hash: f4f10dba2975b51c2d2c92157018db3ac13d4d4a
commit-date: 2015-01-17 20:31:08 +0000
host: x86_64-unknown-linux-gnu
release: 1.0.0-nightly
@jdm jdm added the I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ label Jan 20, 2015
@theemathas
Copy link
Contributor

dupe of #21379

@ghost ghost added the E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added. label Mar 4, 2015
@tamird
Copy link
Contributor

tamird commented Mar 15, 2015

@jakub- #21379 is a duplicate of #20605 which is closed with a test. I think this is good to close

@ghost
Copy link

ghost commented Mar 16, 2015

@tamird Certainly. Thanks!

@ghost ghost closed this as completed Mar 16, 2015
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
E-needs-test Call for participation: An issue has been fixed and does not reproduce, but no test has been added. I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Projects
None yet
Development

No branches or pull requests

4 participants