Add bool debug type
This commit is contained in:
parent
e5da657c85
commit
09ed7e9557
1 changed files with 3 additions and 1 deletions
4
tccgen.c
4
tccgen.c
|
@ -165,7 +165,9 @@ static const struct {
|
||||||
{ -1, "_Decimal128:t24=r1;16;0;" },
|
{ -1, "_Decimal128:t24=r1;16;0;" },
|
||||||
/* if default char is unsigned */
|
/* if default char is unsigned */
|
||||||
{ VT_BYTE | VT_UNSIGNED, "unsigned char:t25=r25;0;255;" },
|
{ VT_BYTE | VT_UNSIGNED, "unsigned char:t25=r25;0;255;" },
|
||||||
{ VT_VOID, "void:t26=26" },
|
/* boolean type */
|
||||||
|
{ VT_BOOL, "bool:t26=r26;0;255;" },
|
||||||
|
{ VT_VOID, "void:t27=27" },
|
||||||
};
|
};
|
||||||
|
|
||||||
static int debug_next_type;
|
static int debug_next_type;
|
||||||
|
|
Loading…
Reference in a new issue