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.
This commit is contained in:
Alex Crichton
2014-06-24 16:34:46 -07:00
parent 719ffc2484
commit 3d308fe65b
21 changed files with 4 additions and 74 deletions

View File

@@ -179,7 +179,6 @@ pub fn float_ty_to_str(t: FloatTy) -> String {
match t {
TyF32 => "f32".to_string(),
TyF64 => "f64".to_string(),
TyF128 => "f128".to_string(),
}
}