diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-06-24 16:34:46 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-24 16:36:12 -0700 |
| commit | 3d308fe65b5aa653b482341a04f301b02f263c3b (patch) | |
| tree | 1e2d5d31c7f4c8325ea0010a595f97cd3316933f /src/libsyntax/ext | |
| parent | 719ffc2484e59476dc153d3503a5adfe79487e11 (diff) | |
| download | rust-3d308fe65b5aa653b482341a04f301b02f263c3b.tar.gz rust-3d308fe65b5aa653b482341a04f301b02f263c3b.zip | |
Remove the quad_precision_float feature gate
The f128 type has very little support in the compiler and the feature is basically unusable today. Supporting half-baked features in the compiler can be detrimental to the long-term development of the compiler, and hence this feature is being removed.
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/quote.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsyntax/ext/quote.rs b/src/libsyntax/ext/quote.rs index 407715ab4da..97033ccee15 100644 --- a/src/libsyntax/ext/quote.rs +++ b/src/libsyntax/ext/quote.rs @@ -483,7 +483,6 @@ fn mk_token(cx: &ExtCtxt, sp: Span, tok: &token::Token) -> Gc<ast::Expr> { let s_fty = match fty { ast::TyF32 => "TyF32", ast::TyF64 => "TyF64", - ast::TyF128 => "TyF128" }; let e_fty = mk_ast_path(cx, sp, s_fty); let e_fident = mk_ident(cx, sp, fident); |
