index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Frontend
/
Warnings.cpp
Age
Commit message (
Expand
)
Author
2013-03-16
Remove -Wspellcheck and replace it with a diagnostic option.
Argyrios Kyrtzidis
2013-01-15
[driver] Warnings for warning options are handled by the frontend. The drive...
Chad Rosier
2013-01-12
Remove useless 'llvm::' qualifier from names like StringRef and others that are
Dmitri Gribenko
2012-12-04
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-10-23
Use a .def file for most of the diagnostic options.
Douglas Gregor
2012-10-23
Make DiagnosticOptions intrusively reference-counted, and make sure
Douglas Gregor
2012-06-26
Add template type diffing to Clang. This feature will provide a better
Richard Trieu
2012-05-16
Tweek r156937 a bit so that the suggestions are correct.
Chad Rosier
2012-05-16
Warn about -Wno-foo where foo is an unknown warning option. This is helpful
Chad Rosier
2012-02-20
Basic: import IntrusiveRefCntPtr<> into clang namespace
Dylan Noblesmith
2012-01-31
Fix 80-column violation.
Chad Rosier
2012-01-27
Due to a bug, -Wno-everything works like -Weverything. Fix the bug by having
Argyrios Kyrtzidis
2012-01-17
Treat -Wformat=0 as an alias for -Wformat.
Hans Wennborg
2011-12-16
C++11 constexpr: Add note stacks containing backtraces if constant evaluation
Richard Smith
2011-11-28
Add missing equals.
Benjamin Kramer
2011-11-15
Typo.
Chad Rosier
2011-11-15
Fix a regression from 143657. The second pass of the warning options should ...
Chad Rosier
2011-11-15
Warning option typo correction: When two options have the same edit_distance ...
Benjamin Kramer
2011-11-14
Print a typo correction hint for unknown warning flags.
Benjamin Kramer
2011-11-03
Parse the warning options twice. The first pass sets diagnostic state, while
Chad Rosier
2011-09-29
Basic/Diagnostic: Factor out
Daniel Dunbar
2011-09-25
Rename Diagnostic to DiagnosticsEngine as per issue 5397
David Blaikie
2011-08-18
Implement '-Weverything', which enables all warnings except those explicitly ...
Ted Kremenek
2011-07-23
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-06-03
Don't warn about -Wno-foo where foo is an unknown warning option. Explicitly
Matt Beaumont-Gay
2011-05-25
A StringRef-ication of the DiagnosticIDs API and internals.
Argyrios Kyrtzidis
2010-06-11
Add an option -fshow-overloads=best|all to limit the number of overload
Jeffrey Yasskin
2010-04-20
Introduce a limit on the depth of the template instantiation backtrace
Douglas Gregor
2010-04-07
add clang -cc1 level support for "-ferror-limit 42"
Chris Lattner
2010-03-17
Simplify ProcessWarningOptions since it can't fail
Kovarththanan Rajaratnam
2009-12-23
switch -Werror/-Wfatal-errors error conditions to use diagnostics instead
Chris Lattner
2009-12-22
implement -W[no-]fatal-errors, patch by Christian Adåker!
Chris Lattner
2009-11-12
Move warning options into DiagnosticOptions.
Daniel Dunbar
2009-11-10
Add Diagnostic::Report method for reporting diagnostics without a location.
Daniel Dunbar
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-08-14
PR4715
Shantonu Sen
2009-06-23
switch Warnings.cpp to use the diagnostics machinery to print diagnostics, no...
Chris Lattner
2009-05-19
Clean up some unnecessary includes.
Eli Friedman
2009-05-19
Move clang-cc.h to lib/Frontend/Utils.h, and move the associated .cpp
Eli Friedman