File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed 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