File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
swift/ql/integration-tests/posix-only/deduplication Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2
2
| Builtin.Executor | BuiltinExecutorType |
3
3
| Builtin.FPIEEE32 | BuiltinFloatType |
4
4
| Builtin.FPIEEE64 | BuiltinFloatType |
5
- | Builtin.FPIEEE80 | BuiltinFloatType |
6
5
| Builtin.Int1 | BuiltinIntegerType |
7
6
| Builtin.Int8 | BuiltinIntegerType |
8
7
| Builtin.Int16 | BuiltinIntegerType |
Original file line number Diff line number Diff line change @@ -2,5 +2,8 @@ import swift
2
2
3
3
from BuiltinType t
4
4
// FPIEEE16 related stuff is not there on macOS
5
- where not t .toString ( ) .matches ( "%FPIEEE16" )
5
+ // FPIEEE80 is also missing on some CI runners
6
+ where
7
+ not t .toString ( ) .matches ( "%FPIEEE16" ) and
8
+ not t .toString ( ) .matches ( "%FPIEEE80" )
6
9
select t , t .getPrimaryQlClasses ( )
You can’t perform that action at this time.
0 commit comments