File tree Expand file tree Collapse file tree 3 files changed +267
-258
lines changed
branches/auto/src/librustc/middle/trans Expand file tree Collapse file tree 3 files changed +267
-258
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
14
14
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
15
15
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
16
16
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17
- refs/heads/auto: 12d87d39c1baebcce28ebff095bc811cd3d7402f
17
+ refs/heads/auto: a33d1b8f1dd9898858bb65bd32c633e3cd63be9d
18
18
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
19
19
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
Original file line number Diff line number Diff line change @@ -1142,7 +1142,7 @@ pub fn trans_stmt(cx: block, s: &ast::stmt) -> block {
1142
1142
bcx = init_local( bcx, * local) ;
1143
1143
if cx. sess( ) . opts. extra_debuginfo
1144
1144
&& fcx_has_nonzero_span( bcx. fcx) {
1145
- debuginfo:: create_local_var ( bcx, * local) ;
1145
+ debuginfo:: create_local_var_metadata ( bcx, * local) ;
1146
1146
}
1147
1147
}
1148
1148
ast:: decl_item( i) => trans_item( cx. fcx. ccx, i)
@@ -1774,7 +1774,7 @@ pub fn copy_args_to_allocas(fcx: fn_ctxt,
1774
1774
bcx = _match:: store_arg( bcx, args[ arg_n] . pat, llarg) ;
1775
1775
1776
1776
if fcx. ccx. sess. opts. extra_debuginfo && fcx_has_nonzero_span( fcx) {
1777
- debuginfo:: create_arg ( bcx, & args[ arg_n] , args[ arg_n] . ty. span) ;
1777
+ debuginfo:: create_argument_metadata ( bcx, & args[ arg_n] , args[ arg_n] . ty. span) ;
1778
1778
}
1779
1779
}
1780
1780
@@ -1948,7 +1948,7 @@ pub fn trans_fn(ccx: @mut CrateContext,
1948
1948
|fcx| {
1949
1949
if ccx. sess. opts. extra_debuginfo
1950
1950
&& fcx_has_nonzero_span( fcx) {
1951
- debuginfo:: create_function ( fcx) ;
1951
+ debuginfo:: create_function_metadata ( fcx) ;
1952
1952
}
1953
1953
} ,
1954
1954
|_bcx| { } ) ;
You can’t perform that action at this time.
0 commit comments