Skip to content

Commit 70a8836

Browse files
committed
---
yaml --- r: 1835 b: refs/heads/master c: 86f1ace h: refs/heads/master i: 1833: 0ff9c13 1831: fdd012f v: v3
1 parent 248b2a3 commit 70a8836

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: f0706d8932fc78c5b72db08733122fffbe1c4a81
2+
refs/heads/master: 86f1ace55b6507671f51e52557db5caef7ad4393

trunk/src/comp/front/creader.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ impure fn parse_sty(@pstate st, str_def sd) -> ty.sty {
7575
case ('b') {ret ty.ty_bool;}
7676
case ('i') {ret ty.ty_int;}
7777
case ('u') {ret ty.ty_uint;}
78+
case ('l') {ret ty.ty_float;}
7879
case ('M') {
7980
alt (next(st) as char) {
8081
case ('b') {ret ty.ty_machine(common.ty_u8);}
@@ -104,7 +105,7 @@ impure fn parse_sty(@pstate st, str_def sd) -> ty.sty {
104105
}
105106
st.pos = st.pos + 1u;
106107
ret ty.ty_tag(sd(def), params);
107-
}
108+
}
108109
case ('@') {ret ty.ty_box(parse_mt(st, sd));}
109110
case ('V') {ret ty.ty_vec(parse_mt(st, sd));}
110111
case ('P') {ret ty.ty_port(parse_ty(st, sd));}

0 commit comments

Comments
 (0)