| commit | 42b7e01f7cf55692dfdf53d064c80b1eaf92fbde | [log] [tgz] |
|---|---|---|
| author | Hal Finkel <hfinkel@anl.gov> | Tue Sep 02 22:36:58 2014 +0000 |
| committer | Hal Finkel <hfinkel@anl.gov> | Tue Sep 02 22:36:58 2014 +0000 |
| tree | fc2f4f664463bfe31e2e5e2863ae47c1962c8919 | |
| parent | af2b7dc522d50750c6c1c0461fad53d1dfb29fd8 [diff] |
[CFLAA] Remove tautological comparison
Fixes this (the warning is right, the unsigned value is not negative):
lib/Analysis/StratifiedSets.h:689:53: warning: comparison of unsigned expression >= 0 is always true [-Wtautological-compare]
bool inbounds(StratifiedIndex N) const { return N >= 0 && N < Links.size(); }
llvm-svn: 216987