about summary refs log tree commit diff
path: root/src/libhexfloat
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/libhexfloat
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/libhexfloat')
-rw-r--r--src/libhexfloat/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libhexfloat/lib.rs b/src/libhexfloat/lib.rs
index f0f05baa282..351afc1c5d4 100644
--- a/src/libhexfloat/lib.rs
+++ b/src/libhexfloat/lib.rs
@@ -112,7 +112,6 @@ pub fn expand_syntax_ext(cx: &mut ExtCtxt, sp: Span, tts: &[ast::TokenTree])
         Some(Ident{ident, span}) => match token::get_ident(ident).get() {
             "f32" => Some(ast::TyF32),
             "f64" => Some(ast::TyF64),
-            "f128" => Some(ast::TyF128),
             _ => {
                 cx.span_err(span, "invalid floating point type in hexfloat!");
                 None