Skip to content

Commit

Permalink
Builtins: handle _Float16 type specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
ehaas authored and Vexu committed Dec 3, 2023
1 parent 521b2f6 commit a0555b0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/aro/Builtins.zig
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,7 @@ fn createType(desc: TypeDescription, it: *TypeDescription.TypeIterator, comp: *c
}
},
.h => builder.combine(undefined, .fp16, 0) catch unreachable,
.x => {
// Todo: _Float16
return .{ .specifier = .invalid };
},
.x => builder.combine(undefined, .float16, 0) catch unreachable,
.y => {
// Todo: __bf16
return .{ .specifier = .invalid };
Expand Down

0 comments on commit a0555b0

Please sign in to comment.