tinycc-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Tinycc-devel] TinyCC REPL


From: Sergey Korshunoff
Subject: Re: [Tinycc-devel] TinyCC REPL
Date: Wed, 20 May 2015 14:43:28 +0300

Hi!
The code what I asked above:
v &= ~SYM_EXTENDED;
if (v >= SYM_EXTENDED) {
}
I think that a rigth code must be:
if (v >= SYM_EXTENDED) {
}
v &= ~SYM_EXTENDED;

I don't know if v can be negative, but the first version is wrong even
for the positive v (as I understand)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]