]> granicus.if.org Git - clang/shortlog
clang
2011-01-25 Douglas GregorTeach TemplateSpecializationTypeLoc::initializeArgLocs...
2011-01-25 Rafael EspindolaMove unnamed_addr after the function arguments on Sabre...
2011-01-25 Douglas GregorAdd test for PR8629
2011-01-25 Anders CarlssonDon't insert class templates into the DynamicClasses...
2011-01-25 Douglas GregorBe a bit more defensive about setting the temporary...
2011-01-25 Douglas GregorImplement the rvalue-reference deduction transformation...
2011-01-25 Douglas GregorWhen performing a glvalue-to-xvalue static_cast that...
2011-01-25 John McCallDocument the ns_returns_retained, ns_consumed, etc...
2011-01-25 John McCallChange the wording of the bad-decl-for-attribute warnin...
2011-01-25 John McCallAdd the ns_consumes_self, ns_consumed, cf_consumed...
2011-01-25 Douglas GregorDowngrade the error about rvalue references to an exten...
2011-01-25 Argyrios Kyrtzidis[analyzer] Handle the dot syntax for properties in...
2011-01-25 Argyrios Kyrtzidis[analyzer] Introduce ExprEngine::VisitObjCMessage for...
2011-01-25 Argyrios Kyrtzidis[analyzer] Introduce ObjCMessage which represents both...
2011-01-25 Argyrios KyrtzidisIn a ObjCMessageExpr with the super class as receiver...
2011-01-25 Argyrios Kyrtzidis[analyzer] Simplify GetReceiverType function in BasicOb...
2011-01-24 Eric ChristopherRevert r124146 for now. It appears to be failing on...
2011-01-24 Anton Yartsevpre/post increase/decrease for AltiVec vectors
2011-01-24 Nick LewyckyEnhance the diagnostic for referring to a typedef with...
2011-01-24 Douglas GregorDisallow function template partial specializations...
2011-01-24 Douglas GregorEliminate the use of getTypeForDecl from clang_getCurso...
2011-01-24 Douglas GregorNote the need for --param=build_config=whatever in...
2011-01-24 Douglas GregorImprove the printing of C++ construction expressions...
2011-01-24 Anders CarlssonUse attributes for all the override control specifiers.
2011-01-24 Douglas GregorRe-instate r123977/r123978, my updates of the reference...
2011-01-24 Axel NaumannCheck whether DependentScopeDeclRefExpr's NestedNameSpe...
2011-01-24 Douglas GregorEliminate the last reference to concepts, from Jean...
2011-01-24 Anders CarlssonFix the __has_attribute example; we don't have an overr...
2011-01-24 Chris Lattnerfix some typos, patch by Jonathan Wakely!
2011-01-24 Chris Lattnerfix a broken example, PR9005, patch by Jonathan Wakely!
2011-01-24 Chris Lattnerremove some crazy leftover thing.
2011-01-24 Anders CarlssonWhen building a type info struct for EH, we always...
2011-01-24 Anders CarlssonChange CodeGenModule::getVTableLinkage to be a non...
2011-01-24 Anders Carlsson"Name" a bool parameter.
2011-01-24 Ken DyckUse CharUnits for the offset amount of RegionRawOffset.
2011-01-24 Ken DyckRemove private toCharUnits() helper method, replacing...
2011-01-24 Anders CarlssonMark VTables and RTTI data linkonce_odr instead of...
2011-01-23 Anders CarlssonGet rid of [[hiding]], [[override]] and [[base_check]].
2011-01-23 Anders CarlssonGet rid of the [[final]] C++0x attribute.
2011-01-23 Rafael EspindolaAdd support for the --noexecstack option. Fixes PR8762.
2011-01-23 Ted KremenekTeach -Wuninitialized-experimental about sizeof().
2011-01-23 Ted KremenekTweak diagnostic:
2011-01-23 Ted KremenekNull initialize a few variables flagged by
2011-01-22 Anders CarlssonAccept the C++0x override control keywords as an extens...
2011-01-22 Anders CarlssonImplement [class.derived]p8.
2011-01-22 Anders CarlssonSerialize and deserialize IsMarkedFinal/IsMarkedExplicit.
2011-01-22 Anders CarlssonMark classes final and/or explicit during class templat...
2011-01-22 Anders CarlssonMark classes as final or explicit. Diagnose when a...
2011-01-22 Anders CarlssonAdd final/explicit getters and setters to CXXRecordDecl.
2011-01-22 Anders CarlssonParse class-virt-specifier-seqs.
2011-01-22 Anders CarlssonMore work on ClassVirtSpecifiers.
2011-01-22 Rafael EspindolaAdd test from PR9026.
2011-01-22 Rafael Espindolarevert r123977 and r123978 to fix PR9026.
2011-01-22 Anders CarlssonStart stubbing out a ClassVirtSpecifiers class.
2011-01-22 Anders CarlssonA member function template cannot be virtual.
2011-01-22 Benjamin KramerUse a FunctionType::get overload that doesn't require...
2011-01-22 John McCallImprove our parse recovery on 'case blah;' and 'default;'.
2011-01-22 Douglas GregorSend code generation for xvalues down the same path...
2011-01-22 Douglas GregorDebug info generation for rvalue references
2011-01-22 Douglas GregorUpdate const_cast semantics for rvalue references....
2011-01-22 Douglas GregorTeach static_cast and dynamic_cast about rvalue references.
2011-01-21 Douglas GregorAdd a test for "perfect" forwarding
2011-01-21 Ted KremenekProvide -Wuninitialized-experimental fixits
2011-01-21 Douglas GregorWhen throwing an elidable object, first try to treat...
2011-01-21 Douglas GregorGeneralize the NRVO move-construction-based initializat...
2011-01-21 Ted KremenekAdd basic fixits for -Wuninitialized-experimental
2011-01-21 Ted KremenekEnhance -Wuninitialized-experimental diagnostics
2011-01-21 Douglas GregorImplement the preference for move-construction over...
2011-01-21 Douglas GregorWe love parentheses
2011-01-21 Douglas GregorPromote the static getNRVOCandidate() function, which...
2011-01-21 Douglas GregorImplement core issue 1164, which concerns the partial...
2011-01-21 Douglas GregorAdd unique_ptr example to test the use of rvalue refere...
2011-01-21 Douglas GregorAdd test for overload resolution's preference for bindi...
2011-01-21 Douglas GregorEliminate an unused variable
2011-01-21 Douglas GregorUpdate the reference-binding implementation used for...
2011-01-21 Douglas GregorMore testing to C++0x [temp.deduct.call]p3
2011-01-21 Douglas GregorImplement the special template argument deduction rule...
2011-01-21 Peter CollingbourneSema: process non-inheritable attributes on function...
2011-01-21 Peter CollingbourneSema: support for processing non-inheritable declaratio...
2011-01-21 Peter CollingbourneGeneralise support for non-inheritable attributes
2011-01-21 Douglas GregorAdd more reference-binding examples from the C++0x...
2011-01-21 Fariborz JahanianMove cheking of kext into canDevirtualizeMemberFunction...
2011-01-21 Douglas GregorImprove the diagnostic that complains about binding...
2011-01-21 Douglas GregorMore work to bring reference binding up to the latest...
2011-01-21 Douglas GregorWhen performing reference binding via a conversion...
2011-01-20 Fariborz JahanianInitialize a variable, found by Ted.
2011-01-20 Douglas GregorFix a use of uninitialized variables, found by Ted!
2011-01-20 Ted KremenekRemoving debug printing logic from UninitializedValuesV2.
2011-01-20 Ted KremenekRelax CFG assertions in UninitializedValuesV2 when
2011-01-20 Ted KremenekAdd test case for <rdar://problem/8891119>. In
2011-01-20 Ted KremenekAdd rudimentary path-sensitivity to UnintializedValuesV2
2011-01-20 Fariborz Jahanianapple kext abi requires all vf calls, including qualified
2011-01-20 Ted KremenekEnhance AnalysisConsumer to also visit functions
2011-01-20 Douglas GregorMore tests for reference binding in the presence of...
2011-01-20 Douglas GregorStart refactoring reference binding to more closely...
2011-01-20 Anders CarlssonDiagnose when a virtual member function marked final...
2011-01-20 Rafael EspindolaMerge test.
2011-01-20 Douglas GregorAdd some tests for reference-collapsing and referencing...
2011-01-20 John McCallFix the computation of alignment for fields of packed...
2011-01-20 Anders CarlssonWhen instantiating member functions, propagate whether...
next