summaryrefslogtreecommitdiffstats
path: root/clang/test/Preprocessor/expr_usual_conversions.c
Commit message (Collapse)AuthorAgeFilesLines
* Rename clang to clang-cc.Daniel Dunbar2009-03-241-1/+1
| | | | | | Tests and drivers updated, still need to shuffle dirs. llvm-svn: 67602
* Fix PR2279 part C: shifts don't perform the UACs, thanks to Neil Chris Lattner2008-05-041-0/+5
| | | | | | for pointing this out. llvm-svn: 50624
* Warn when performing 'usual' conversions that require a sign change. ThisChris Lattner2007-04-111-0/+8
implements test/Preprocessor/expr_usual_conversions.c, which produces this output: expr_usual_conversions.c:5:10: warning: left side of operator converted from negative value to unsigned: -42 to 18446744073709551574 #if (-42 + 0U) / -2 ^ expr_usual_conversions.c:5:16: warning: right side of operator converted from negative value to unsigned: -2 to 18446744073709551614 #if (-42 + 0U) / -2 ^ llvm-svn: 39406
OpenPOWER on IntegriCloud