Skip to content

Commit 712f775

Browse files
author
Dave Bartolomeo
authored
Merge branch 'main' into post-release-prep/codeql-cli-2.15.1
2 parents 8dcd8b9 + 2a1ca63 commit 712f775

File tree

120 files changed

+14925
-4728
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+14925
-4728
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,18 @@ updates:
2525
allow:
2626
- dependency-name: "golang.org/x/mod"
2727
- dependency-name: "golang.org/x/tools"
28-
group:
28+
groups:
2929
extractor-dependencies:
3030
patterns:
3131
- "golang.org/x/*"
3232
reviewers:
3333
- "github/codeql-go"
34+
35+
- package-ecosystem: "gomod"
36+
directory: "go/ql/test"
37+
schedule:
38+
interval: "monthly"
39+
ignore:
40+
- dependency-name: "*"
41+
reviewers:
42+
- "github/codeql-go"
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
class BuiltinType extends @builtintype {
2+
string toString() { none() }
3+
}
4+
5+
from BuiltinType type, string name, int kind, int kind_new, int size, int sign, int alignment
6+
where
7+
builtintypes(type, name, kind, size, sign, alignment) and
8+
if
9+
type instanceof @fp16 or
10+
type instanceof @std_bfloat16 or
11+
type instanceof @std_float16 or
12+
type instanceof @complex_std_float32 or
13+
type instanceof @complex_float32x or
14+
type instanceof @complex_std_float64 or
15+
type instanceof @complex_float64x or
16+
type instanceof @complex_std_float128
17+
then kind_new = 2
18+
else kind_new = kind
19+
select type, name, kind_new, size, sign, alignment

0 commit comments

Comments
 (0)