Skip to content

Commit f8b192c

Browse files
authored
Merge pull request #19688 from jketema/mfp8
C++: Support the `__mfp8` floating point type
2 parents 7a632e8 + d70282c commit f8b192c

File tree

14 files changed

+13869
-3882
lines changed

14 files changed

+13869
-3882
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
class BuiltinType extends @builtintype {
2+
string toString() { none() }
3+
}
4+
5+
from BuiltinType id, string name, int kind, int new_kind, int size, int sign, int alignment
6+
where
7+
builtintypes(id, name, kind, size, sign, alignment) and
8+
if kind = 62 then new_kind = 1 else new_kind = kind
9+
select id, name, new_kind, size, sign, alignment

0 commit comments

Comments
 (0)