summaryrefslogtreecommitdiff
path: root/test/Sema/return.c
AgeCommit message (Expand)Author
2014-03-07Fix recent regressions in -Wreturn-type caused by heuristics to -Wunreachable...Ted Kremenek
2014-02-28CFG: Also apply the filter to the first block in a FilteredCFGBlockIterator.Benjamin Kramer
2014-01-16Forbid driver use in Sema testsAlp Toker
2013-04-16Remove setjmp.h header file from Sema/return.c test and include necessaryJyotsna Verma
2013-04-11Exclude test30 of Sema/return.c for Hexagon since setjmp.h include fileJyotsna Verma
2013-03-28For -Wignored-qualifiers, don't warn on qualifiers which we acquire via aRichard Smith
2012-03-21Change the binary operator data recursive evaluator to not stop at the firstRichard Trieu
2012-02-03[frontend] Don't allow a mapping to a warning override an error/fatal mapping.Chad Rosier
2011-02-23Fix the behavior of -Wignored-qualifiers on return type qualifiers inChandler Carruth
2010-10-19test/Sema/return.c: Cygwin does not have _longjmp().NAKAMURA Takumi
2010-09-09Enhance -Wreturn-type to not warn when control-flow is most likely limited by...Ted Kremenek
2010-09-03Get rid of the "functions declared 'noreturn' should have a 'void' result typ...Anders Carlsson
2010-08-19Add warning for functions/blocks that have attribute 'noreturn' but return a ...Ted Kremenek
2010-07-14Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'.Chandler Carruth
2010-07-11fix PR7280 by making the warning on code like this:Chris Lattner
2010-04-08Update test case.Ted Kremenek
2010-03-23For forward-declared static inline functions, delay CFG-based warnings until weTed Kremenek
2010-03-23Only perform CFG-based warnings on 'static inline' functions thatTed Kremenek
2010-03-12Improve the unused-value check to look into comma expressions and filter outJohn McCall
2010-01-23Insulate these from changes to the default for -Wunreachable-code.Mike Stump
2009-12-17Revert r91073.Mike Stump
2009-12-15Update tests to use %clang instead of 'clang', and forcibly disable use of 'Daniel Dunbar
2009-12-10Don't complain about falling off the end of a function with an asmMike Stump
2009-11-17Use clang to run tests which include headers from the system.Daniel Dunbar
2009-10-29Fix some Window-isms to get these tests to pass on Windows.John Thompson
2009-07-29Be sure to turn on -fblocks.Mike Stump
2009-07-28Add support for -Wmissing-noreturn.Mike Stump
2009-07-27Ensure we can work through typedefs.Mike Stump
2009-07-27Add knowledge about _longjmp being noreturn.Mike Stump
2009-07-27Add builtin knowledge about longjmp being noreturn. Add printing forMike Stump
2009-07-27Add noreturn for exit.Mike Stump
2009-07-27add bugzilla #Chris Lattner
2009-07-27Fix PR4624.Mike Stump
2009-07-25Add noreturn as a type attribute, handle printing for them and handleMike Stump
2009-07-22Add warning for falling off the end of a function that should return aMike Stump
2009-04-30Name the "return-type" DiagGroup and reference it in a few places.Steve Naroff
2009-04-30Warn about invalid return statements by default.Steve Naroff