diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp/pretty/pprust.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/pretty/pprust.rs b/src/comp/pretty/pprust.rs index 8c09393a..dd36f57b 100644 --- a/src/comp/pretty/pprust.rs +++ b/src/comp/pretty/pprust.rs @@ -125,6 +125,7 @@ impure fn print_type(ps s, &@ast.ty ty) { case (ast.ty_bool) {wrd(s.s, "bool");} case (ast.ty_int) {wrd(s.s, "int");} case (ast.ty_uint) {wrd(s.s, "uint");} + case (ast.ty_float) {wrd(s.s, "float");} case (ast.ty_machine(?tm)) {wrd(s.s, common.ty_mach_to_str(tm));} case (ast.ty_char) {wrd(s.s, "char");} case (ast.ty_str) {wrd(s.s, "str");} |