]> granicus.if.org Git - clang/shortlog
clang
2009-12-10 Chris Lattnerfix PR5740: a colon is sacred when parsing case stateme...
2009-12-10 Chris Lattnerrename testcase
2009-12-10 Chris Lattnerrefactor the 'ColonIsSacred' argument to ParseOptionalC...
2009-12-10 Anders CarlssonMove more decl related functions to CGDeclCXX.cpp
2009-12-10 Chris Lattnerrename ExtensionRAIIObject.h -> RAIIObjectsForParser.h
2009-12-10 Anders CarlssonAdd CGDeclCXX.cpp and move EmitCXXGlobalVarDeclInit...
2009-12-10 Nuno Lopesspread 'const' love to some variables. this considerabl...
2009-12-10 Mike StumpFixup spacing.
2009-12-10 Mike StumpFix spacing.
2009-12-10 Mike StumpEnsure we only generate one terminate handler.
2009-12-09 Mike StumpRemove obsolete FIXME and some dead fallback code.
2009-12-09 Mike StumpAdd terminate handler to cleanups on exceptional edges.
2009-12-09 Fariborz JahanianCode gen for ObjCIsaExpr AST used as lvalue.
2009-12-09 Mike StumpAdd terminate handler for copy constructors for thrown...
2009-12-09 Ted KremenekFix null dereference in OSAtomicChecker and special...
2009-12-09 Douglas GregorReimplement reference initialization (C++ [dcl.init...
2009-12-09 Mike StumpBreak out code for reuse. WIP.
2009-12-09 Fariborz JahanianFixes a bogus error when declaring an extern "C" array.
2009-12-09 Mike StumpAdd throw support. WIP.
2009-12-09 Fariborz JahanianCodegen. support for ObjCIsaExpr AST which until now
2009-12-09 Mike StumpFix 80-col violation.
2009-12-09 Anders CarlssonAdd DeclContext::dump.
2009-12-09 Zhongxing XuRefactor OSAtomic evaluation logic into OSAtomicChecker.
2009-12-09 Zhongxing XuUse a temporary destination set such that we can clear...
2009-12-09 Daniel Dunbarclang -cc1: Mark -i* options as JoinedOrSeparate, since...
2009-12-09 John McCallFirst pass at implementing C++ enum semantics: calcula...
2009-12-09 Zhongxing XuOSAtomic simulation: use the original region as the...
2009-12-09 Anders CarlssonLook through using declarations when searching for...
2009-12-09 Ted KremenekUpdate checker build.
2009-12-09 Zhongxing Xuremove dead code.
2009-12-09 Zhongxing XuInsert instead of assign to the dest node set, since...
2009-12-09 Eli FriedmanFix for PR5730: make sure to consistently call
2009-12-09 Eli FriedmanWhitespace fix.
2009-12-09 Anders CarlssonIn CXXRecordDecl::forallBases, add the base to the...
2009-12-09 Zhongxing XuAdd notes to a test case.
2009-12-09 Ted KremenekFix crash in DisplayFunction(). ObjCInterfaceDecls...
2009-12-09 Anders CarlssonDon't warn about function templates or function templat...
2009-12-09 Mike StumpAdd cleanups for exceptional edges. WIP.
2009-12-09 John McCallRename Sema::IsOverload to Sema::CheckOverload. Teach...
2009-12-09 Anders CarlssonMove the missing prototypes checking out into a new...
2009-12-09 Eli FriedmanFix for PR5709: use the computed type of the declaratio...
2009-12-09 Anders CarlssonPass the current SourceLocation to getAssignOperatorMet...
2009-12-09 Ted KremenekFix a horrid bug in GRExprEngine::CheckerVisit() that...
2009-12-09 Chris LattnerNeil points out that this could be simplified, do it.
2009-12-09 Mike StumpAdd support for the cleanup attribute for C++; we don...
2009-12-09 Douglas GregorImplemented an implicit conversion from "noreturn"...
2009-12-09 Daniel DunbarImprove test portability; I can't figure out how to...
2009-12-08 Fariborz JahanianAdded a missing case to a switch statement.
2009-12-08 Daniel DunbarIncrease inlining threshold at -O3, to match llvm-gcc.
2009-12-08 Fariborz JahanianMore detailed analysis of typecast to an objective...
2009-12-08 John McCallHandle unresolved using decls in bare lookups. These...
2009-12-08 Daniel DunbarImprove test portability.
2009-12-08 Anders CarlssonMake the BugType.h header self-contained so Daniel...
2009-12-08 Mike StumpAdd fixme.
2009-12-08 Daniel DunbarRemove include of system header.
2009-12-08 Mike StumpRemove some old code. WIP.
2009-12-08 Douglas GregorDon't expand tabs when computing the offset from the...
2009-12-08 Daniel DunbarDon't use MS extensions in this test, we expect header...
2009-12-08 Douglas GregorPick up MB_LEN_MAX as defined by the system <limits...
2009-12-08 Daniel DunbarUpdate CGExprConstant for change to emit padding values...
2009-12-08 Daniel DunbarSwitch this test to use clang-cc.
2009-12-08 Fariborz JahanianPatch to allow matching 0 with an objective-c pointer...
2009-12-08 Daniel DunbarUnbreak clang-cc handling of -msoft-float / -mfloat...
2009-12-08 Daniel DunbarUse clang-cc in this test.
2009-12-08 Fariborz JahanianPatch to allow cstyle cast of objective-c pointers...
2009-12-08 Fariborz JahanianRefactor objective-c pointer assignment compatibility...
2009-12-08 Douglas GregorImplement template instantiation for exception specific...
2009-12-08 Steve NaroffIntegrate the following from the 'objective-rewrite...
2009-12-08 Douglas GregorWhen performing unqualified name lookup in C++, don...
2009-12-08 Benjamin KramerUse StringRef in CGDebugInfo::EmitFunctionStart.
2009-12-08 Benjamin KramerUse a Twine to concatenate the name instead of going...
2009-12-08 Benjamin KramerTwinify InitHeaderSearch::AddPath and use it in C+...
2009-12-08 Benjamin KramerUse StringRefs in InitHeaderSearch::AddDelimitedPaths.
2009-12-08 Benjamin KramerUse Path.makeAbsolute() and make a constant std::string...
2009-12-08 John McCallThe refactor of implicit member access expressions...
2009-12-08 John McCallDeclRefExpr stores a ValueDecl internally.
2009-12-08 Zhongxing XuRefactor builtin function evaluation into a checker.
2009-12-08 John McCallCorrectly implement the C++03 and 0x restrictions on...
2009-12-08 John McCallAdd CXXRecordDecl::forallBases to walk an inheritance...
2009-12-08 Eli FriedmanBuild fix.
2009-12-08 Eli FriedmanFix for PR5707: make sure implicit copy constructors...
2009-12-08 Eli FriedmanSmall compatibility fix for -print-decl-contexts.
2009-12-08 Eli FriedmanFix for PR5710: make sure to put function template...
2009-12-08 Zhongxing Xubrace completion.
2009-12-08 Eli FriedmanSlight tweak to vtable linkage.
2009-12-08 Eli FriedmanMisc key function fixes.
2009-12-08 Fariborz JahanianPatch to warn when discarding objective-c pointer type...
2009-12-08 Douglas GregorRemove dead diagnostics
2009-12-08 Eli FriedmanGet rid of some diagnostics that don't follow our rules...
2009-12-08 Eli FriedmanFix some direct checks of expressions which might be...
2009-12-08 Eli FriedmanMake copy assignment operator synthesis not explode...
2009-12-08 Jeffrey YasskinRemove several .c_str() to be forward-compatible with...
2009-12-08 Mike StumpFixup catch parameters with class reference type. ...
2009-12-08 Anders CarlssonNo need to add tail padding if the resulting LLVM struc...
2009-12-07 Eli FriedmanA bunch more thunk fixes from misc testing.
2009-12-07 Mike StumpAdd codegen support for exception specifications. ...
2009-12-07 John McCallRecover from dot accesses to record pointers and arrow...
2009-12-07 Ted KremenekEnable '-analyzer-opt-analyze-nested-blocks' by default...
2009-12-07 Ted KremenekAdd clang-cc option '-analyzer-opt-analyze-nested-block...
2009-12-07 Ted KremenekAdd analysis support for blocks. This includes a few...
next