Skip to content

Commit 27fd54f

Browse files
committed
disable gcc backend change
1 parent 8bedfe7 commit 27fd54f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

compiler/rustc_codegen_gcc/src/builder.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
454454
self.llbb().end_with_conditional(None, cond, then_block, else_block)
455455
}
456456

457+
/* FIXME: implement
457458
fn cond_br_with_expect(
458459
&mut self,
459460
cond: &'ll Value,
@@ -472,6 +473,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
472473
// emit the branch instruction
473474
self.llbb().end_with_conditional(None, cond, then_block, else_block)
474475
}
476+
*/
475477

476478
fn switch(&mut self, value: RValue<'gcc>, default_block: Block<'gcc>, cases: impl ExactSizeIterator<Item = (u128, Block<'gcc>)>) {
477479
let mut gcc_cases = vec![];

0 commit comments

Comments
 (0)