We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5261f8 commit 2b0ff17Copy full SHA for 2b0ff17
2 files changed
swift/ql/integration-tests/posix-only/deduplication/BuiltinTypes.expected
@@ -2,7 +2,6 @@
2
| Builtin.Executor | BuiltinExecutorType |
3
| Builtin.FPIEEE32 | BuiltinFloatType |
4
| Builtin.FPIEEE64 | BuiltinFloatType |
5
-| Builtin.FPIEEE80 | BuiltinFloatType |
6
| Builtin.Int1 | BuiltinIntegerType |
7
| Builtin.Int8 | BuiltinIntegerType |
8
| Builtin.Int16 | BuiltinIntegerType |
swift/ql/integration-tests/posix-only/deduplication/BuiltinTypes.ql
@@ -2,5 +2,8 @@ import swift
from BuiltinType t
// FPIEEE16 related stuff is not there on macOS
-where not t.toString().matches("%FPIEEE16")
+// FPIEEE80 is also missing on some CI runners
+where
+ not t.toString().matches("%FPIEEE16") and
+ not t.toString().matches("%FPIEEE80")
9
select t, t.getPrimaryQlClasses()
0 commit comments