How can I prevent the gcc optimizer from producing incorrect bit operations? – stackoverflow.com 03:06 Posted by Unknown No Comments Consider the following program. #include <stdio.h> int negative(int A) { return (A & 0x80000000) != 0; } int divide(int A, int B) { printf("A = %d\n", A); printf("negative(A) = ... from Hot Questions - Stack Exchange OnStackOverflow via Blogspot Share this Unknown
0 Comment to "How can I prevent the gcc optimizer from producing incorrect bit operations? – stackoverflow.com"
Post a Comment