File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
9
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10
- refs/heads/dist-snap: b4f47eca2a99c1ead824e9cf85b12d9efc14eabb
10
+ refs/heads/dist-snap: 3e95a1357756db52ff7e6b6376f8c6ed59925971
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
13
13
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
Original file line number Diff line number Diff line change @@ -640,8 +640,8 @@ struct Liveness {
640
640
tcx : ty:: ctxt,
641
641
ir : @IrMaps ,
642
642
s : Specials ,
643
- successors : ~[ mut LiveNode ] ,
644
- users : ~[ mut users] ,
643
+ mut successors : ~[ LiveNode ] ,
644
+ mut users : ~[ users] ,
645
645
// The list of node IDs for the nested loop scopes
646
646
// we're in.
647
647
loop_scope: DVec < node_id > ,
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ pub const use_repr: uint = 1u; /* Dependency on size/alignment/mode and
49
49
take/drop glue */
50
50
pub const use_tydesc: uint = 2 u; /* Takes the tydesc, or compares */
51
51
52
- pub type ctx = { ccx : @crate_ctxt , uses : ~[ mut type_uses ] } ;
52
+ pub type ctx = { ccx : @crate_ctxt , mut uses : ~[ type_uses ] } ;
53
53
54
54
pub fn type_uses_for ( ccx : @crate_ctxt , fn_id : def_id , n_tps : uint )
55
55
-> ~[ type_uses ] {
Original file line number Diff line number Diff line change @@ -1158,7 +1158,7 @@ pub mod node {
1158
1158
use core:: vec;
1159
1159
1160
1160
pub struct T {
1161
- stack : ~[ mut @Node ] ,
1161
+ mut stack : ~[ @Node ] ,
1162
1162
mut stackpos : int ,
1163
1163
}
1164
1164
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ pub fn sha1() -> Sha1 {
70
70
{ h : ~[ mut u32] ,
71
71
mut len_low : u32 ,
72
72
mut len_high : u32 ,
73
- msg_block : ~[ mut u8] ,
73
+ mut msg_block : ~[ u8 ] ,
74
74
mut msg_block_idx : uint ,
75
75
mut computed : bool ,
76
76
work_buf : @~[ mut u32] } ;
Original file line number Diff line number Diff line change @@ -254,8 +254,8 @@ pub type printer_ = {
254
254
mut space : int , // number of spaces left on line
255
255
mut left : uint , // index of left side of input stream
256
256
mut right : uint , // index of right side of input stream
257
- token : ~[ mut token ] , // ring-buffr stream goes through
258
- size : ~[ mut int] , // ring-buffer of calculated sizes
257
+ mut token : ~[ token ] , // ring-buffr stream goes through
258
+ mut size : ~[ int ] , // ring-buffer of calculated sizes
259
259
mut left_total : int , // running size of stream "...left"
260
260
mut right_total : int , // running size of stream "...right"
261
261
// pseudo-stack, really a ring too. Holds the
You can’t perform that action at this time.
0 commit comments