From a31a749c42505e53308c0f2426db283ea130e776 Mon Sep 17 00:00:00 2001 From: Veikka Tuominen Date: Wed, 19 Jan 2022 12:26:30 +0200 Subject: stage1: add f80 type --- src/value.zig | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/value.zig') diff --git a/src/value.zig b/src/value.zig index 9d9895a6e0..faf4f38e80 100644 --- a/src/value.zig +++ b/src/value.zig @@ -47,6 +47,7 @@ pub const Value = extern union { f16_type, f32_type, f64_type, + f80_type, f128_type, anyopaque_type, bool_type, @@ -205,6 +206,7 @@ pub const Value = extern union { .f16_type, .f32_type, .f64_type, + .f80_type, .f128_type, .anyopaque_type, .bool_type, @@ -398,6 +400,7 @@ pub const Value = extern union { .f16_type, .f32_type, .f64_type, + .f80_type, .f128_type, .anyopaque_type, .bool_type, @@ -630,6 +633,7 @@ pub const Value = extern union { .f16_type => return out_stream.writeAll("f16"), .f32_type => return out_stream.writeAll("f32"), .f64_type => return out_stream.writeAll("f64"), + .f80_type => return out_stream.writeAll("f80"), .f128_type => return out_stream.writeAll("f128"), .anyopaque_type => return out_stream.writeAll("anyopaque"), .bool_type => return out_stream.writeAll("bool"), @@ -824,6 +828,7 @@ pub const Value = extern union { .f16_type => Type.initTag(.f16), .f32_type => Type.initTag(.f32), .f64_type => Type.initTag(.f64), + .f80_type => Type.initTag(.f80), .f128_type => Type.initTag(.f128), .anyopaque_type => Type.initTag(.anyopaque), .bool_type => Type.initTag(.bool), -- cgit v1.2.3