Skip to content

Instantly share code, notes, and snippets.

@emoon
Created May 9, 2013 19:36
Show Gist options
  • Save emoon/5549968 to your computer and use it in GitHub Desktop.
Save emoon/5549968 to your computer and use it in GitHub Desktop.
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