Skip to content

Commit 3e1bd19

Browse files
committed
force i1 booleans to i8 when comparing
Work around LLVM bug. cc #36856
1 parent 9c31d76 commit 3e1bd19

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

src/librustc_trans/base.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,16 @@ pub fn compare_scalar_types<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
308308
_ => bug!("compare_scalar_types: must be a comparison operator"),
309309
}
310310
}
311-
ty::TyFnDef(..) | ty::TyFnPtr(_) | ty::TyBool | ty::TyUint(_) | ty::TyChar => {
311+
ty::TyBool => {
312+
// FIXME(#36856) -- using `from_immediate` forces these booleans into `i8`,
313+
// which works around some LLVM bugs
314+
ICmp(bcx,
315+
bin_op_to_icmp_predicate(op, false),
316+
from_immediate(bcx, lhs),
317+
from_immediate(bcx, rhs),
318+
debug_loc)
319+
}
320+
ty::TyFnDef(..) | ty::TyFnPtr(_) | ty::TyUint(_) | ty::TyChar => {
312321
ICmp(bcx,
313322
bin_op_to_icmp_predicate(op, false),
314323
lhs,

src/test/run-pass/issue-36856.rs

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// Regression test for #36856.
12+
13+
// compile-flags:-g
14+
15+
fn g() -> bool {
16+
false
17+
}
18+
19+
pub fn main() {
20+
let a = !g();
21+
if a != !g() {
22+
panic!();
23+
}
24+
}

0 commit comments

Comments
 (0)