We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
These warnings are due comparison between pointers (most char *) and integers (most sqInt). For example:
char *
sqInt
generated/64/vm/src/gcc3x-cointerp.c:29031:31: warning: comparison between pointer and integer ('char *' and 'usqInt' (aka 'unsigned long')) [-Wpointer-integer-compare] if (GIV(instructionPointer) == (ceReturnToInterpreterPC())) {
It is because all the pointers to the stack are declared as char *... check the comment on this line:
pharo-vm/smalltalksrc/VMMaker/StackInterpreter.class.st
Lines 537 to 540 in 5aa6b45
The problem changing that line to #usqInt makes compilation errors.
#usqInt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
These warnings are due comparison between pointers (most
char *
) and integers (mostsqInt
). For example:It is because all the pointers to the stack are declared as
char *
... check the comment on this line:pharo-vm/smalltalksrc/VMMaker/StackInterpreter.class.st
Lines 537 to 540 in 5aa6b45
The problem changing that line to
#usqInt
makes compilation errors.The text was updated successfully, but these errors were encountered: