summaryrefslogtreecommitdiff
path: root/compilerplugins/clang
AgeCommit message (Expand)AuthorFilesLines
2013-02-22s/the the/the/Tor Lillqvist2-2/+2
2013-02-11Fixed compilation error of Clang plugins on Ubuntu/MintMarc-André Laverdière1-0/+2
2013-02-09make it possible to limit what files will be modified by a compiler pluginLuboš Luňák2-23/+81
2013-02-09fix check whether a file is in a directoryLuboš Luňák1-4/+4
2013-02-02tutorial examples for writing new Clang plugin actionsLuboš Luňák8-0/+378
2013-02-02remove not needed #includeLuboš Luňák9-18/+1
2013-02-02append [loplugin] automatically in report() rathen than manually everywhereLuboš Luňák6-20/+21
2013-02-02always use the report() helperLuboš Luňák5-29/+30
2013-02-02move clang plugin that's no longer neededLuboš Luňák3-0/+3
2013-02-02move documentation of plugins to the .cxx filesLuboš Luňák5-1/+24
2013-02-02avoid having to manuall modify sources when adding a new clang pluginLuboš Luňák16-52/+161
2013-02-02move plugin handling to separate source filesLuboš Luňák3-156/+211
2013-01-11fix detection whether to ignore a source file or notLuboš Luňák1-3/+2
2013-01-06do not set our clang timestamp to the timestamp of the clang binaryLuboš Luňák3-4/+2
2013-01-05I hate arbitrary integer typesLuboš Luňák1-1/+1
2013-01-04handle case of SRCDIR == BUILDDIRLuboš Luňák1-1/+1
2013-01-04rewriter plugin for removing forward rtl string declarationsLuboš Luňák3-0/+115
2013-01-04support for removing a statement as a wholeLuboš Luňák2-10/+57
2013-01-04better handling of which files are processed by clang pluginsLuboš Luňák3-11/+62
2012-12-26fix buildLubos Lunak1-0/+1
2012-12-26better error handling when writing modified sourceLubos Lunak1-10/+17
2012-12-26config_clang.hLubos Lunak1-5/+3
2012-12-05Adapt to current Clang trunkStephan Bergmann1-0/+1
2012-12-05Adapt to Clang 3.2Stephan Bergmann7-1/+10
2012-11-20skip 'else' from a macro expansion tooLuboš Luňák2-9/+11
2012-10-26do not warn about missing area in SAL_DEBUGLuboš Luňák1-7/+23
2012-10-19only one warning per one SAL_INFO/SAL_WARNLubos Lunak2-0/+9
2012-10-15rewriter for postfix->prefix operator++Luboš Luňák3-0/+210
2012-10-15convenience functions for source rewritersLuboš Luňák4-10/+107
2012-10-15support for compiler rewritersLuboš Luňák10-16/+163
2012-10-15some namespacing improvementsLuboš Luňák6-8/+6
2012-10-13remove debug outputLuboš Luňák1-4/+4
2012-10-13compiler check to compare SAL_WARN/LOG areas against sal/inc/sal/log-areas.doxLuboš Luňák6-8/+164
2012-10-12compilers don't seem to warn about unused variables in the global scopeLuboš Luňák1-0/+2
2012-10-12DeclBase::getLocation() gives better location than getLocStart()Luboš Luňák2-3/+3
2012-10-12avoid crash on pointers to functionsLuboš Luňák1-1/+1
2012-10-12do not report unnamed parameters as unusedLuboš Luňák1-0/+2
2012-10-09don't check next statement after if body if there's also an else partLuboš Luňák2-3/+8
2012-10-09ignore macro expansion completely for nowLuboš Luňák1-7/+7
2012-10-09do not analyse system headers in the compiler pluginLuboš Luňák4-4/+22
2012-10-09do not force compiler plugin warnings to errors with -Werror, for nowLuboš Luňák1-1/+3
2012-10-09move some code to a common baseLuboš Luňák6-41/+41
2012-10-09compiler plugin check for if/while/true bodies with possibly {} missingLuboš Luňák3-0/+190
2012-10-09compiler check for unused variablesLuboš Luňák3-0/+152
2012-10-09initial support for clang compiler pluginsLuboš Luňák2-0/+82