Skip to content

Commit 068cfb2

Browse files
committed
git checkout upstream cpp
1 parent 538c5e2 commit 068cfb2

103 files changed

Lines changed: 44403 additions & 5200 deletions

File tree

Some content is hidden

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

cpp/downgrades/5491582ac8511726e12fae3e2399000f9201cd9a/old.dbscheme

Lines changed: 2428 additions & 0 deletions
Large diffs are not rendered by default.

cpp/downgrades/5491582ac8511726e12fae3e2399000f9201cd9a/semmlecode.cpp.dbscheme

Lines changed: 2451 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
description: Remove unused external_package tables from the dbscheme
2+
compatibility: full
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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 @complex_fp16 or
10+
type instanceof @complex_std_bfloat16 or
11+
type instanceof @complex_std_float16
12+
then kind_new = 2
13+
else kind_new = kind
14+
select type, name, kind_new, size, sign, alignment

0 commit comments

Comments
 (0)