aboutsummaryrefslogtreecommitdiff
path: root/test/Sema
AgeCommit message (Expand)Author
2009-11-17Make test header independent so it doesn't fail on freebsd. I hope this doesn'tBenjamin Kramer
2009-11-17Use clang to run tests which include headers from the system.Daniel Dunbar
2009-11-17Don't #include <stdio.h> when tests don't need it, or use clang instead of cl...Daniel Dunbar
2009-11-16Add constant evaluation for comma operator with floating-point operand. FixesEli Friedman
2009-11-11Fix PR 5422: handle lvalue results when evaluating 'based' ptrtoints as part ofJohn McCall
2009-11-09Changed error for nested type qualifier mismatch toFariborz Jahanian
2009-11-09Test case for Sean Hunt's patch which I left out.Fariborz Jahanian
2009-11-09Add support for cdecl attribute. (As far as I know, it doesn't affect CodeGenEli Friedman
2009-11-09Add a triple to try to fix the buildbot error.Anders Carlsson
2009-11-09__uint128_t is indeed an unsigned integer type. Fixes PR5435.Anders Carlsson
2009-11-08Eliminate &&s in tests.Daniel Dunbar
2009-11-07Support -Wshorten-64-to-32 for integer types only, which seems to satisfy theJohn McCall
2009-11-07Improve -Wconversion by permitting binary operations on values of the targetJohn McCall
2009-11-07Test case for -Wconversion.John McCall
2009-11-06compare.c also needs a target triple now, and improve some comments while we'reJohn McCall
2009-11-06Improve the -Wsign-compare heuristics:John McCall
2009-11-06Turn off -Wsign-compare warnings by defaultDouglas Gregor
2009-11-05Make ASTContext::getIntWidth return 1 for all boolean type variations, not ju...Sebastian Redl
2009-11-05Adding -fshort-wchar option.John Thompson
2009-11-05Implement the conditional-operator part of -Wsign-compare. TurnJohn McCall
2009-11-05Implement -Wsign-compare, or at least the actual comparison part of it.John McCall
2009-11-04Diagnose the use of 'fastcall' on functions without prototypes or withJohn McCall
2009-11-04Diagnose __builtin_offsetof on incomplete types. FixesJohn McCall
2009-11-04Change our basic strategy for avoiding deprecation warnings when the decl useJohn McCall
2009-11-03Reorganize the parsing of decl groups / function definitions so thatJohn McCall
2009-10-31Fix the type of __builtin_expect, from Ed Schouten!Douglas Gregor
2009-10-30warn about returning the address of a label.Chris Lattner
2009-10-29Fix some Window-isms to get these tests to pass on Windows.John Thompson
2009-10-27Implement Chris's suggestions for the precendence warnings. Reformat the code...Sebastian Redl
2009-10-26Implement a warning for mixing bitwise logical with comparison ops. Fixes PR5...Sebastian Redl
2009-10-25Phrase compile time assert in standard way.Daniel Dunbar
2009-10-25Fix PR5298 - -Wmissing-noreturn shouldn't warn if the function is alreadyChris Lattner
2009-10-25Implement rdar://6756623 - use of deprecated type in deprecated typedef shoul...Chris Lattner
2009-10-25When parsing a top level struct declaration, make sure to Chris Lattner
2009-10-22fix #2 :)Chris Lattner
2009-10-22fix testcase, thanks Daniel.Chris Lattner
2009-10-22fix PR5265: the size of a float3 should be rounded up to its alignment. Chris Lattner
2009-10-21Downgrade "function declared 'noreturn' should not return" from anDouglas Gregor
2009-10-20Implement PR5242: don't desugar a type more than once in a diagnostic. ThisChris Lattner
2009-10-17teach getCorrespondingUnsignedType how to handle vectors of integers,Chris Lattner
2009-10-16Implement PR4407 - missing warnings on case value overflow,Chris Lattner
2009-10-13add rdar # I accidentally lost.Chris Lattner
2009-10-13merge two tests.Chris Lattner
2009-10-13make the diagnostic in the 'unused result' warning more preciseChris Lattner
2009-10-09Add CheckCallReturnType and start using it for regular call expressions. This...Anders Carlsson
2009-10-08Implement support for -Wunused-variable, from Oscar Bonilla!Douglas Gregor
2009-09-30Add an error for function parameters that have a qualified address space sinc...Tanya Lattner
2009-09-28Provide a custom diagnostic when code tries to use an unknown builtinDouglas Gregor
2009-09-26builtin_trap should be noreturn, this fixes PR5062, patch byChris Lattner
2009-09-26Add a "positive" matching test case for attribute 'noreturn' that involves a ...Ted Kremenek