C++: Introduce (_Complex) _Float16 type which is needed after frontend update

This commit is contained in:
Jeroen Ketema
2023-01-05 16:18:28 +01:00
parent 282ca1094e
commit 1bab950023
6 changed files with 16 additions and 0 deletions

View File

@@ -816,6 +816,12 @@ private predicate floatingPointTypeMapping(
or
// _Float128x
kind = 50 and base = 2 and domain = TRealDomain() and realKind = 50 and extended = true
or
// _Float16
kind = 52 and base = 2 and domain = TRealDomain() and realKind = 52 and extended = false
or
// _Complex _Float16
kind = 53 and base = 2 and domain = TComplexDomain() and realKind = 52 and extended = false
}
/**