Skip to content

Commit 1dba906

Browse files
author
blake2-ppc
committed
---
yaml --- r: 82004 b: refs/heads/master c: f4d8d8c h: refs/heads/master v: v3
1 parent 3ad6fb2 commit 1dba906

File tree

7 files changed

+130
-117
lines changed

7 files changed

+130
-117
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: b88517ec93933ddefe28f793f90b072e9934c198
2+
refs/heads/master: f4d8d8c12299456ded2f6dd367a5764abe93af8d
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6c08cc2db4f98e9f07ae7d50338396c4123c2f0a
55
refs/heads/try: 70152ff55722878cde684ee6462c14c65f2c4729

trunk/src/librustc/middle/trans/base.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1407,7 +1407,10 @@ pub fn cleanup_and_leave(bcx: @mut Block,
14071407
}
14081408
match leave {
14091409
Some(target) => Br(bcx, target),
1410-
None => { Resume(bcx, Load(bcx, bcx.fcx.personality.unwrap())); }
1410+
None => {
1411+
let ll_load = Load(bcx, bcx.fcx.personality.unwrap());
1412+
Resume(bcx, ll_load);
1413+
}
14111414
}
14121415
}
14131416

0 commit comments

Comments
 (0)