diff options
| author | gingerBill <bill@gingerbill.org> | 2019-11-10 18:51:21 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-11-10 18:51:21 +0000 |
| commit | 536cceeef9144b59a9e335d2bbb151ead3f7bdba (patch) | |
| tree | efb5f7d099613093a8920361c5be9f717da939a7 /src/check_expr.cpp | |
| parent | 098684a6fe037a6ce3be948343495f1714bf26bb (diff) | |
Add `intrinsics.type_is_unsigned`
Diffstat (limited to 'src/check_expr.cpp')
| -rw-r--r-- | src/check_expr.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 46c4ae18e..22f27939e 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -3322,6 +3322,7 @@ BuiltinTypeIsProc *builtin_type_is_procs[BuiltinProc__type_end - BuiltinProc__ty is_type_any, is_type_endian_little, is_type_endian_big, + is_type_unsigned, is_type_numeric, is_type_ordered, is_type_ordered_numeric, @@ -5044,6 +5045,7 @@ bool check_builtin_procedure(CheckerContext *c, Operand *operand, Ast *call, i32 case BuiltinProc_type_is_any: case BuiltinProc_type_is_endian_little: case BuiltinProc_type_is_endian_big: + case BuiltinProc_type_is_unsigned: case BuiltinProc_type_is_numeric: case BuiltinProc_type_is_ordered: case BuiltinProc_type_is_ordered_numeric: |