about summary refs log tree commit diff
path: root/src/libsyntax/ext
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-06-25 04:31:19 +0000
committerbors <bors@rust-lang.org>2014-06-25 04:31:19 +0000
commit7a93beef7f692b34168ad69633f56483d38ad8fc (patch)
treee99530b6eed86ae92bd76f9b0d092ff82763f388 /src/libsyntax/ext
parent91be86af0952aebb1f7c1811a6abcccd7bd1c26e (diff)
parent3d308fe65b5aa653b482341a04f301b02f263c3b (diff)
downloadrust-7a93beef7f692b34168ad69633f56483d38ad8fc.tar.gz
rust-7a93beef7f692b34168ad69633f56483d38ad8fc.zip
auto merge of #15160 : alexcrichton/rust/remove-f128, r=brson
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.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsyntax/ext/quote.rs b/src/libsyntax/ext/quote.rs
index 9174bb65b24..35702b1b3cd 100644
--- a/src/libsyntax/ext/quote.rs
+++ b/src/libsyntax/ext/quote.rs
@@ -448,7 +448,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);