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
/
c89.c
Age
Commit message (
Expand
)
Author
2012-09-24
Change the wording of the extension warning from
Dmitri Gribenko
2012-04-05
Implement C90 pedantic warning for duplicate declaration specifiers which are...
Eli Friedman
2012-03-16
Warn on flexible array members when in C89 mode, with -pedantic.
David Chisnall
2012-02-14
Warn about non-int main() results in GNU C mode instead of erroring.
John McCall
2011-12-29
Change the diagnostics which said 'accepted as an extension' to instead say
Richard Smith
2011-12-08
Only do typo correction for implicit function decls when
Hans Wennborg
2011-12-06
Suggest typo corrections for implicit function declarations.
Hans Wennborg
2011-04-24
PR4304: Add warning for designators in strict c89 mode.
Eli Friedman
2010-05-22
Implement support for variable length arrays in C++. VLAs are limited
Douglas Gregor
2009-12-15
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-07-22
Prep for new warning.
Mike Stump
2009-04-28
Fix a minor edge case in C89 mode related to the definition of a
Eli Friedman
2009-04-25
Fix for PR4074: allow subscripting non-lvalue arrays in C90 mode.
Eli Friedman
2009-03-24
Rename clang to clang-cc.
Daniel Dunbar
2008-12-18
Clean up the C89/C++ warnings about C99 array features to not
Chris Lattner
2008-12-17
diagnose C99 6.9.1p5, C arguments in definitions that are lacking
Chris Lattner
2008-04-10
typedef void T;
Chris Lattner
2008-04-10
Several improvements from Doug Gregor related to default
Chris Lattner
2008-04-05
Fix handling of implicit int, resolving PR2012 and reverting (and
Chris Lattner
2008-04-05
Step #1 to fixing PR2012: c89 allows declspecs to be completely
Chris Lattner
2008-02-19
fix the second half of PR2041: __restrict is ok in c90 mode, even if
Chris Lattner
2008-02-15
Fix PR2041: restrict is not a keyword in c90.
Chris Lattner
2008-02-10
Fix PR1999, by emitting a hard error only if an argument declarator is comple...
Chris Lattner
2007-10-11
rename -parse-ast-print to -ast-print
Chris Lattner
2007-09-26
Removed option "-parse-ast-check" from clang driver. This is now implemented
Ted Kremenek
2007-08-30
-C mode doesn't return comments on "#" lines, so the diag checker doesn't pic...
Chris Lattner
2007-08-29
Ensure we diagnose long long literals in C90 mode.
Neil Booth
2007-08-28
extwarn about VLAs in C89 mode.
Chris Lattner
2007-08-28
warn about long long when in c89 mode.
Chris Lattner
2007-08-27
extwarn about decls intermixed with code in c89 mode.
Chris Lattner