rustc_trans: do not attempt to truncate an i1 const to i1.

This commit is contained in:
Eduard-Mihai Burtescu 2017-05-12 00:14:31 +03:00
parent e40beb3af1
commit 68c1ce9170
2 changed files with 21 additions and 2 deletions

View File

@ -415,8 +415,11 @@ impl<'a, 'tcx> MirConstContext<'a, 'tcx> {
Value(base));
}
if projected_ty.is_bool() {
unsafe {
val = llvm::LLVMConstTrunc(val, Type::i1(self.ccx).to_ref());
let i1_type = Type::i1(self.ccx);
if val_ty(val) != i1_type {
unsafe {
val = llvm::LLVMConstTrunc(val, i1_type.to_ref());
}
}
}
(Base::Value(val), extra)

View File

@ -0,0 +1,16 @@
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
trait Tc {}
impl Tc for bool {}
fn main() {
let _: &[&Tc] = &[&true];
}