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 22| Builtin.Executor | BuiltinExecutorType |
33| Builtin.FPIEEE32 | BuiltinFloatType |
44| Builtin.FPIEEE64 | BuiltinFloatType |
5- | Builtin.FPIEEE80 | BuiltinFloatType |
65| Builtin.Int1 | BuiltinIntegerType |
76| Builtin.Int8 | BuiltinIntegerType |
87| Builtin.Int16 | BuiltinIntegerType |
Original file line number Diff line number Diff line change @@ -2,5 +2,8 @@ import swift
22
33from BuiltinType t
44// 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" )
69select t , t .getPrimaryQlClasses ( )
You can’t perform that action at this time.
0 commit comments