Fix stupid typo.
This commit is contained in:
parent
9a81e6366b
commit
748e38ad99
1 changed files with 1 additions and 1 deletions
2
tccdbg.c
2
tccdbg.c
|
@ -1523,7 +1523,7 @@ static int tcc_get_dwarf_info(TCCState *s1, Sym *s)
|
|||
retval = debug_type;
|
||||
t = s;
|
||||
for (;;) {
|
||||
type = t->type.t & ~(VT_STORAGE | VT_CONSTANT | VT_VOLATILE) | VT_VLA;
|
||||
type = t->type.t & ~(VT_STORAGE | VT_CONSTANT | VT_VOLATILE | VT_VLA);
|
||||
if ((type & VT_BTYPE) != VT_BYTE)
|
||||
type &= ~VT_DEFSIGN;
|
||||
if (type == VT_PTR) {
|
||||
|
|
Loading…
Reference in a new issue