From 748e38ad991c595787f02f018232ae08c85753a6 Mon Sep 17 00:00:00 2001 From: herman ten brugge Date: Tue, 10 May 2022 07:21:49 +0200 Subject: [PATCH] Fix stupid typo. --- tccdbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tccdbg.c b/tccdbg.c index bafcecd0..0297cc73 100644 --- a/tccdbg.c +++ b/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) {