-
-
Save emoon/5549968 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern unsigned int a; | |
extern unsigned int b; | |
int main(int c, const char** v) | |
{ | |
if (a-b<0) | |
return 0; | |
return 1; | |
} | |
clang test.c -o test.o | |
test.c:6:9: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare] | |
if (a-b<0) | |
~~~^~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment