Skip to content

Commit 1b86058

Browse files
---
yaml --- r: 69089 b: refs/heads/auto c: a33d1b8 h: refs/heads/master i: 69087: 8a32483 v: v3
1 parent 9269959 commit 1b86058

File tree

3 files changed

+267
-258
lines changed

3 files changed

+267
-258
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: 12d87d39c1baebcce28ebff095bc811cd3d7402f
17+
refs/heads/auto: a33d1b8f1dd9898858bb65bd32c633e3cd63be9d
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1919
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c

branches/auto/src/librustc/middle/trans/base.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,7 @@ pub fn trans_stmt(cx: block, s: &ast::stmt) -> block {
11421142
bcx = init_local(bcx, *local);
11431143
if cx.sess().opts.extra_debuginfo
11441144
&& fcx_has_nonzero_span(bcx.fcx) {
1145-
debuginfo::create_local_var(bcx, *local);
1145+
debuginfo::create_local_var_metadata(bcx, *local);
11461146
}
11471147
}
11481148
ast::decl_item(i) => trans_item(cx.fcx.ccx, i)
@@ -1774,7 +1774,7 @@ pub fn copy_args_to_allocas(fcx: fn_ctxt,
17741774
bcx = _match::store_arg(bcx, args[arg_n].pat, llarg);
17751775

17761776
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);
17781778
}
17791779
}
17801780

@@ -1948,7 +1948,7 @@ pub fn trans_fn(ccx: @mut CrateContext,
19481948
|fcx| {
19491949
if ccx.sess.opts.extra_debuginfo
19501950
&& fcx_has_nonzero_span(fcx) {
1951-
debuginfo::create_function(fcx);
1951+
debuginfo::create_function_metadata(fcx);
19521952
}
19531953
},
19541954
|_bcx| { });

0 commit comments

Comments
 (0)