Skip to content

Commit 269bc6f

Browse files
committed
fix warning
1 parent 98740a5 commit 269bc6f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/rustc/middle/trans/base.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3856,8 +3856,7 @@ fn trans_break_cont(bcx: block, to_end: bool)
38563856
let _icx = bcx.insn_ctxt("trans_break_cont");
38573857
// Locate closest loop block, outputting cleanup as we go.
38583858
let mut unwind = bcx;
3859-
let mut target = bcx; // FIXME---not necc. but tstate thinks it is
3860-
let _target = target; // FIXME---hack to shut up liveness about target
3859+
let mut target;
38613860
loop {
38623861
alt unwind.kind {
38633862
block_scope({loop_break: some(brk), _}) {

0 commit comments

Comments
 (0)