tccgen.c: silence logical op warning
Some checks are pending
build and test / test-x86_64-linux (push) Waiting to run
build and test / test-x86_64-osx (push) Waiting to run
build and test / test-aarch64-osx (push) Waiting to run
build and test / test-x86_64-win32 (push) Waiting to run
build and test / test-i386-win32 (push) Waiting to run
build and test / test-armv7-linux (push) Waiting to run
build and test / test-aarch64-linux (push) Waiting to run
build and test / test-riscv64-linux (push) Waiting to run

behavior is unchanged
This commit is contained in:
noneofyourbusiness 2025-09-18 11:42:55 +02:00
parent 8f23997ca7
commit 47106ce103
No known key found for this signature in database
GPG Key ID: C410836142828D2F

View File

@ -1330,7 +1330,7 @@ static void move_ref_to_global(Sym *s)
if (!(bt == VT_PTR
|| bt == VT_FUNC
|| bt == VT_STRUCT
|| (IS_ENUM(s->type.t)) && (bt = VT_ENUM,1)))
|| ((IS_ENUM(s->type.t)) && (bt = VT_ENUM,1))))
return;
for (s = s->type.ref, n = 0; s; s = s->next) {