Skip to content

Commit 7242868

Browse files
committed
---
yaml --- r: 45036 b: refs/heads/master c: a8237a4 h: refs/heads/master v: v3
1 parent f51101d commit 7242868

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 8105da80676a9ff85199a2bbcd9d9fd4ca019086
2+
refs/heads/master: a8237a46f134fa00d24ef1874abc0a4b45640cbf
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a6d9689399d091c3265f00434a69c551a61c28dc
55
refs/heads/try: ef355f6332f83371e4acf04fc4eb940ab41d78d3

trunk/src/librustc/middle/trans/common.rs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,22 +1016,6 @@ pub fn T_chan(cx: @CrateContext, _t: TypeRef) -> TypeRef {
10161016
pub fn T_taskptr(cx: @CrateContext) -> TypeRef { return T_ptr(cx.task_type); }
10171017

10181018

1019-
// This type must never be used directly; it must always be cast away.
1020-
pub fn T_typaram(tn: @TypeNames) -> TypeRef {
1021-
let s = @"typaram";
1022-
match name_has_type(tn, s) {
1023-
Some(t) => return t,
1024-
_ => ()
1025-
}
1026-
let t = T_i8();
1027-
associate_type(tn, s, t);
1028-
return t;
1029-
}
1030-
1031-
pub fn T_typaram_ptr(tn: @TypeNames) -> TypeRef {
1032-
return T_ptr(T_typaram(tn));
1033-
}
1034-
10351019
pub fn T_opaque_cbox_ptr(cx: @CrateContext) -> TypeRef {
10361020
// closures look like boxes (even when they are ~fn or &fn)
10371021
// see trans_closure.rs

0 commit comments

Comments
 (0)