aboutsummaryrefslogtreecommitdiff
path: root/include/compiler.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-10-06 20:17:27 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commita9a8cf8d337470bb9b4466aea9593df7f5fac776 (patch)
tree22c197c8217cd216e58f8a47a6820d96ff279138 /include/compiler.h
parentfa03e7d230f2625c384ca9a7c314b6d05ab44e70 (diff)
Implicit cast to larger size, number suffix for number bitsize
Diffstat (limited to 'include/compiler.h')
-rw-r--r--include/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/compiler.h b/include/compiler.h
index 164cf4e..481a107 100644
--- a/include/compiler.h
+++ b/include/compiler.h
@@ -19,7 +19,6 @@
typedef struct {
LhsExpr lhs_expr;
- bool is_signed;
} amal_default_type;
typedef struct {
@@ -50,6 +49,7 @@ typedef struct {
} amal_default_types;
bool is_arithmetic_type(LhsExpr *expr, amal_compiler *compiler);
+bool amal_default_type_is_signed(amal_default_type *self);
struct amal_compiler {
amal_default_types default_types;