-
Notifications
You must be signed in to change notification settings - Fork 262
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
Issue 159 #180
Issue 159 #180
Conversation
… nc_get_var_text.
…butes in nc_test, when -funsigned-char is set in CFLAGS.
…nsigned by default.
…ow.com/questions/10541200/is-the-behaviour-of-casting-a-negative-double-to-unsigned-int-defined-in-the-c-s for some background info that lead me to the fix.
… overly broad; I will refine it once I've had a chance to read up on m4.
…e. Working towards fixing them.
…tive value is cast to a different unsigned type.
Many of the places where I use |
Ok, I've also updated our |
Addressing two issues on
ARM
, merging via pull request so that @dmh has a chance to review it. Issues were originally reported by @opoplawski at issue #159.char
isunsigned
by default. This fouled some of our tests.double
tounsigned int
(which throws anNC_ERANGE
error under normal circumstances but is still tested for and technically permitted) is undefined behavior.The former issue has been addressed, and the second issue (while still undefined) now results in behavior consistent with what's observed on Intel platforms.