-
-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
extend pragma #914
base: master
Are you sure you want to change the base?
extend pragma #914
Conversation
extending pragma with option and warning. |
6ba537f
to
7cb045c
Compare
New pragmas: option, warning. New simplified zero division detector. Fixed const scopes. Fixed 'assigned to itself' warning on multidimensional array's cell's (invertion operators).
1ab8e20
to
c0844cc
Compare
@@ -1209,6 +1236,8 @@ static int hier2(value *lval) | |||
rvalue(lval); | |||
invert(); /* bitwise NOT */ | |||
lval->constval=~lval->constval; | |||
if (lval->ident==iVARIABLE || lval->ident==iARRAYCELL) | |||
lval->ident=iEXPRESSION; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are long-standing bugs - but are they related to this change? If not, it's best to separate them for purposes of bisection.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, it looks like there are many individual bug changes in this patch...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should i just separate them? Or it's possible to change pr title instead? (Coz i just took arkshine style, he used 1 pr to update/fix few things in compiler, github.com/alliedmodders/amxmodx/ pull/137).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dvander need answers
No description provided.