We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__mfp8
1 parent c1c0a70 commit 691e462Copy full SHA for 691e462
cpp/ql/lib/semmle/code/cpp/Type.qll
@@ -839,6 +839,9 @@ private predicate floatingPointTypeMapping(
839
or
840
// _Complex _Float128
841
kind = 61 and base = 2 and domain = TComplexDomain() and realKind = 49 and extended = false
842
+ or
843
+ // __mfp8
844
+ kind = 62 and base = 2 and domain = TRealDomain() and realKind = 62 and extended = false
845
}
846
847
/**
cpp/ql/lib/semmlecode.cpp.dbscheme
@@ -691,6 +691,7 @@ case @builtintype.kind of
691
| 59 = @complex_std_float64 // _Complex _Float64
692
| 60 = @complex_float64x // _Complex _Float64x
693
| 61 = @complex_std_float128 // _Complex _Float128
694
+| 62 = @mfp8 // __mfp8
695
;
696
697
builtintypes(
0 commit comments