Skip to content

Commit 2431514

Browse files
---
yaml --- r: 63771 b: refs/heads/snap-stage3 c: 6af7861 h: refs/heads/master i: 63769: 8122f22 63767: d487488 v: v3
1 parent 9e096b1 commit 2431514

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 46d28c874ccb342e6b8f7fa45f7927bcde2f396e
4+
refs/heads/snap-stage3: 6af78610e745f68b8eb3e107bdb1e4b2288c617c
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/librustc/middle/trans/debuginfo.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -886,9 +886,9 @@ fn create_ty(cx: &mut CrateContext, t: ty::t, span: span) -> DIType {
886886
let pointee = create_ty(cx, mt.ty, span);
887887
create_pointer_type(cx, t, span, pointee)
888888
},
889-
ty::ty_rptr(ref _region, ref _mt) => {
890-
cx.sess.span_note(span, "debuginfo for rptr NYI");
891-
create_unimpl_ty(cx, t)
889+
ty::ty_rptr(_, ref mt) => {
890+
let pointee = create_ty(cx, mt.ty, span);
891+
create_pointer_type(cx, t, span, pointee)
892892
},
893893
ty::ty_bare_fn(ref barefnty) => {
894894
let inputs = barefnty.sig.inputs.map(|a| *a);

0 commit comments

Comments
 (0)