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