]> granicus.if.org Git - clang/shortlog
clang
2009-07-25 John McCallSemantic checking for main().
2009-07-25 John McCallFlesh out the QualifierSet API.
2009-07-25 Daniel DunbarTweak svn:ignore
2009-07-25 Anders CarlssonMore work on the constant struct builder. We can now...
2009-07-25 Fariborz JahanianSome code refactoring per Daniel's feedback.
2009-07-25 Anders CarlssonWhoops, did not mean to check this in.
2009-07-25 Anders CarlssonMore work on the constant struct builder. We now try...
2009-07-24 Owen AndersonUpdate for LLVM API change.
2009-07-24 Douglas GregorTemplate instantiation for static data members that...
2009-07-24 Fariborz JahanianFixes broken test by accident.
2009-07-24 Fariborz JahanianMore Sema check for constructor's member initializer...
2009-07-24 Ted KremenekIn the "use of floating point variable as loop counter...
2009-07-24 Ted KremenekHave 'clang --analyze' run syntactic static analysis...
2009-07-24 Mike StumpFix 80-col violations, reflow a few comments and zap...
2009-07-24 Anders CarlssonFix a release build warning.
2009-07-24 Fariborz JahanianMore work toward initialization of objects
2009-07-24 Steve NaroffAllow front-end 'isa' access on object's of type 'id'.
2009-07-24 Anders CarlssonDon't use getLLVMFieldNo for bitfields when constructin...
2009-07-24 Anders CarlssonCheck in a half finished new constant struct builder...
2009-07-24 Daniel DunbarFix declaration of obc_enumerationMutation function...
2009-07-24 Ted KremenekAdd doxygen comments and simplify expression.
2009-07-24 Ted KremenekIntroduce a new variant type 'TryResult' to represent...
2009-07-24 Zhongxing XuAdd getDecl() to CallGraph and CallGraphNode.
2009-07-24 Zhongxing XuConstify methods.
2009-07-24 John McCallTest commit: make a little stub routine for semantic...
2009-07-24 Ted KremenekEnable the '-warn-security-syntactic' checker option...
2009-07-24 Mike StumpImplement new warning for functions declared 'noreturn...
2009-07-24 Anders CarlssonGet rid of the size parameter to AppendField. No functi...
2009-07-24 Ted KremenekMark destructor of Checker virtual.
2009-07-24 Douglas GregorWe now do complete semantic checking for unions
2009-07-23 Douglas GregorUpdate C++ status to reflect progress on out-of-line...
2009-07-23 Douglas GregorThis patch fixes the implementations of the __has_trivi...
2009-07-23 Daniel DunbarOutput UTF-16 string literals independent of host byte...
2009-07-23 Fariborz JahanianDiagnose when base classes and members to be intialized
2009-07-23 Mike StumpRefactor and push the evaluation as late as possible.
2009-07-23 Daniel DunbarFactor out map lookup for CFString constants.
2009-07-23 Anders CarlssonDon't just store the field/bit field info one field...
2009-07-23 Mike StumpSome cleanups suggested by Daniel.
2009-07-23 Ted KremenekImplement: <rdar://problem/6335715> rule request: gets...
2009-07-23 Anders CarlssonFix another thinko.
2009-07-23 Ted KremenekAdd comments.
2009-07-23 Ted KremenekRefine checking and diagnostics for use of floating...
2009-07-23 Anders CarlssonCorrect a thinko in bitfield layout code. Fixes PR4611.
2009-07-23 Daniel DunbarSimplify, NFC.
2009-07-23 Daniel DunbarSwitch the driver back to always using clang-cc by...
2009-07-23 Daniel DunbarSimplify.
2009-07-23 Anders CarlssonWe don't need to keep track of the packed alignment...
2009-07-23 Anders CarlssonMove the LLVM field number for bit fields into the...
2009-07-23 Douglas GregorClean up the ActOnTag action, so that there is only...
2009-07-23 Douglas GregorUnbreak the CMake build
2009-07-23 Zhongxing XuAdd two nodes to the call graph:
2009-07-23 Zhongxing XuAdd template specializations to view the call graph...
2009-07-23 Zhongxing Xuconstify methods.
2009-07-23 Zhongxing XuAdd getter methods.
2009-07-23 Daniel DunbarAdd newline at EOF.
2009-07-23 Daniel DunbarShield clang from LLVM API changes, until the dust...
2009-07-23 Daniel DunbarFix test case, which has a control-reaches-end-of-non...
2009-07-23 Daniel DunbarUse llvm::BitVector instead of managing memory by hand.
2009-07-23 Anders CarlssonSet field info for unions.
2009-07-23 Anders CarlssonUse arrays as union padding. Also, since the resulting...
2009-07-23 Daniel DunbarRevert r76831, there are many Analyzer test failures...
2009-07-23 Anders CarlssonHandle zero width bit fields in unions correctly (by...
2009-07-23 Anders CarlssonImplement union layout support.
2009-07-23 Anders CarlssonCheck in CGRecordLayoutBuilder which is a reimplementa...
2009-07-23 Daniel DunbarThese IRgen improvements have been done.
2009-07-23 Ted KremenekAdd initial implementation of checking for uses of...
2009-07-23 Ted KremenekAdd instance predicate method to match static method.
2009-07-23 Ted KremenekAdd 'previsit' Checker pass for ObjCMessageExprs.
2009-07-23 Steve NaroffRemove a bunch of FIXME's related to ObjC type checking.
2009-07-23 Fariborz JahanianAdd constructor used to initialize base/member in
2009-07-23 Mike StumpFix case, apparently some people still build on case...
2009-07-22 Mike StumpAdd warning for falling off the end of a function that...
2009-07-22 Douglas GregorImplement support for out-of-line definitions of the...
2009-07-22 Eli FriedmanFix test breakage.
2009-07-22 Argyrios KyrtzidisChange Preprocessor to keep a copy of LangOptions inste...
2009-07-22 Mike StumpImprove CFG support for C++ throw expressions.
2009-07-22 Mike StumpPrep for new warning.
2009-07-22 Ted KremenekRefactor 'PostStmt' and 'PreStmt' to subclass a common...
2009-07-22 Eli FriedmanSlight code reorganization to allow instantiating post...
2009-07-22 Douglas GregorCalls to Sema::MatchTemplateParametersToScopeSpecifier...
2009-07-22 Ted KremenekUse SaveAndRestore in 'clang/Analysis/Support/SaveAndRe...
2009-07-22 Ted KremenekAdd AssumeDual method.
2009-07-22 Ted KremenekMigrate the path-sensitive checking of 'nonnull' argume...
2009-07-22 Eli FriedmanFix the parsing of default arguments for inline member...
2009-07-22 Ted KremenekMake 'SaveAndRestore' and friends reusable classes...
2009-07-22 Ted KremenekAdd support for registering 'Checker' objects with...
2009-07-22 Ted KremenekAdd new 'Checker' and 'CheckerVisitor' classes, which...
2009-07-22 Ted KremenekAdd support for 'PreStmt' program points to GRCoreEngin...
2009-07-22 Ted KremenekAdd 'PreStmt' program point. This will be used to repre...
2009-07-22 Ted KremenekImplement operator= for ExplodedNodeSet.
2009-07-22 Douglas GregorFix the problems with template argument deduction and...
2009-07-22 Mike StumpMake -Wreturn-type be part of -Wmost and therefore...
2009-07-22 Douglas GregorFix some memory allocation/deallocation issues
2009-07-22 Eli FriedmanFix a nasty little use-after-free bug.
2009-07-22 Douglas GregorCanonicalize the types produced by template argument...
2009-07-22 Fariborz JahanianImproved on performance of the algorithm for proper...
2009-07-22 Douglas GregorSlighty more testing for template argument deduction...
2009-07-22 Douglas GregorImprove template argument deduction for array types...
2009-07-22 Mike StumpPrep for new warning.
2009-07-22 Mike StumpUse isa instead of dyn_cast for conditionals.
next