]> granicus.if.org Git - clang/shortlog
clang
2008-12-02 Steve NaroffAdd a couple FIXME's.
2008-12-02 Steve NaroffMake sure synthesized properties get inserted into...
2008-12-02 Sebastian RedlParsing new and delete is now complete.
2008-12-02 Sebastian RedlAdd better comments to ::new parsing. Thanks to Doug...
2008-12-02 Sebastian RedlMake RegionStoreManager::InitializeArray safe against...
2008-12-02 Sebastian RedlMake the parser handle ::new and ::delete correctly.
2008-12-02 Sebastian Redlint-arith-convert.c makes assumptions about integer...
2008-12-02 Eli FriedmanUpdate cmake build; patch by Csaba Hruska.
2008-12-02 Steve NaroffSimplify previous commit.
2008-12-02 Eli FriedmanFix for PR3150: obvious copy-paste bug in
2008-12-02 Steve NaroffMore work to rewrite synthesize properties (<rdar:...
2008-12-02 Sebastian RedlHandle new by passing the Declaration to the Action...
2008-12-02 Ted KremenekAdd FIXME.
2008-12-02 Eli FriedmanDisabling this code due to regression on test/CodeGen...
2008-12-02 Douglas GregorA little more scaffolding for parsing templates:
2008-12-02 Fariborz JahanianThis patch corrects problem in searching for a setter...
2008-12-01 Douglas GregorBasic support for parsing templates, from Andrew Sutton
2008-12-01 Douglas GregorImprove error recovery when parsing a function definiti...
2008-12-01 Douglas GregorInitialize storage class even if we got an erroneous...
2008-12-01 Douglas GregorObjective-C keywords are not always identifiers. Some...
2008-12-01 Douglas GregorFix RUN line
2008-12-01 Steve Naroff-Add several ObjC types to Decl::getDeclKindName()...
2008-12-01 Douglas GregorTest blocks in C++ mode
2008-12-01 Douglas GregorUse EmitInt, not Emit, to emit unsigned values
2008-12-01 Daniel DunbarAdd test case for __ASSEMBLER__ definition.
2008-12-01 Daniel DunbarAdd LangOptions marker for assembler-with-cpp mode...
2008-12-01 Douglas GregorEnable blocks in C++
2008-12-01 Douglas GregorMake sure __null test runs in both 32- and 64-bit....
2008-12-01 Douglas GregorParse the exception-specification throw(...), a Microso...
2008-12-01 Douglas GregorAdd the test for __null
2008-12-01 Douglas GregorDefine NULL to __null in C++, so that it's guaranteed...
2008-12-01 Anders CarlssonGenerate the correct results for the comma expression...
2008-12-01 Anders CarlssonRevert change that made isNullPointerConstant start...
2008-12-01 Anders CarlssonFix test. (0 && (a(),1)) is a valid I-C-E according...
2008-12-01 Anders CarlssonChange more code over to using the new Expr::Evaluate
2008-12-01 Anders CarlssonChange more code over to using the new Expr::Evaluate
2008-12-01 Anders CarlssonUse the new Expr::Evaluate
2008-12-01 Anders CarlssonRemove dead code.
2008-12-01 Anders CarlssonAdd Sema::isNullPointerConstant which extwarns if neces...
2008-12-01 Anders CarlssonAdd a new variant of isNullConstantExpr that returns...
2008-12-01 Anders CarlssonUse VerifyIntegerConstantExpression for case values.
2008-12-01 Anders CarlssonEmit the correct diagnostic when a comma is in an ICE.
2008-11-30 Anders CarlssonAdd Sema::VerifyIntegerConstantExpression
2008-11-30 Anders CarlssonChange the diagnostics that the evaluator reports to...
2008-11-30 Anders CarlssonReplace the isEvaluated bool with a ShortCircuit int...
2008-11-30 Anders CarlssonPass the expression to the Error and Extension methods.
2008-11-30 Anders CarlssonAdd a new variant of Evaluate and reimplement the old...
2008-11-30 Anders CarlssonGeneral cleanup, evaluate the RHS of a logical op even...
2008-11-30 Anders CarlssonEvalInfo now holds a reference to an EvalResult struct.
2008-11-30 Anders CarlssonAdd Expr::EvalResult struct. (Not used just yet)
2008-11-30 Zhongxing Xuremove a test case that causes compiler warning.
2008-11-30 Zhongxing XuAdd test for initializing array with string literal.
2008-11-30 Zhongxing XuAdd support for initializing array with string literal.
2008-11-30 Eli FriedmanFix for PR2969: generate a memcpy from a constant for...
2008-11-30 Eli FriedmanMinor update to CMake build system.
2008-11-29 Anders CarlssonCXXFunctionalCastExpr inherits from ExplicitCastExpr.
2008-11-29 Zhongxing XuTo be consistent, make the index of the ElementRegion...
2008-11-29 Douglas GregorImplement the GNU __null extension
2008-11-28 Chris LattnerSwitch QualType to use llvm::PointerIntPair internally...
2008-11-28 Zhongxing XuFix a serious bug.
2008-11-28 Zhongxing XuCode cleanup. No functional change.
2008-11-28 Zhongxing XuUse std::make_pair instead of std::pair's ctor.
2008-11-28 Zhongxing XuEnable the GRStateManager to do something when we finis...
2008-11-27 Chris Lattnerremove dead diag
2008-11-27 Sebastian RedlFix order of evaluation.
2008-11-27 Zhongxing XuImmutableList::getInternalPointer() returns a const...
2008-11-27 Zhongxing XuFactory objects should not be temporary. It caches...
2008-11-27 Zhongxing XuRegionViewMap factory is actually not used. All GDMs...
2008-11-27 Daniel DunbarTest commit.
2008-11-27 Zhongxing XuAdd comments.
2008-11-27 Zhongxing XuAdd license comments.
2008-11-27 Zhongxing XuAdd support for pluggable components of static analyzer.
2008-11-27 Douglas GregorAdd implicit conversions for Objective-C qualified...
2008-11-27 Douglas GregorCleanup formatting
2008-11-27 Douglas GregorDon't complain about block pointer to void* conversions
2008-11-27 Ted KremenekPTHLexer now owns the Token vector.
2008-11-27 Douglas GregorSupport block pointer conversions in C++. I'm storing...
2008-11-26 Ted Kremenek- Enhance PTH generation to write out IdentifierInfo...
2008-11-26 Douglas GregorTest conversion from apointer to incomplete type to...
2008-11-26 Douglas GregorImplement implicit conversions for Objective-C specific...
2008-11-26 Fariborz JahanianAnother test for property code gen.
2008-11-26 Argyrios KyrtzidisAttempt to unravel the if/else mess in Parser::ParseDir...
2008-11-26 Fariborz JahanianCode gen for aggregate-valued properties and a test...
2008-11-26 Argyrios KyrtzidisAdd some comments.
2008-11-26 Argyrios KyrtzidisImplement some suggestions by Daniel:
2008-11-26 Argyrios KyrtzidisAdd an overload for operator<<(const DiagnosticBuilder...
2008-11-26 Fariborz JahanianRemoved a FIXME. Added a test case for anonymous category.
2008-11-26 Fariborz JahanianSet default property attributes on each property.
2008-11-26 Anders CarlssonConvert incomplete array types before emitting debug...
2008-11-26 Nuno Lopesadd missing RUN lines
2008-11-26 Douglas GregorFix a minor typo in the handling of the conditional...
2008-11-26 Douglas GregorTweak the new ResolveOverloadedCallFn to just return...
2008-11-26 Douglas GregorMove the overloading logic of Sema::ActOnCallExpr to...
2008-11-26 Zhongxing XuAdd plugin loading for clang. This will be used to...
2008-11-26 Devang PatelDisable -loop-index-split for now.
2008-11-26 Ted KremenekRe-apply r60071 now that raw_fd_ostream::tell has been...
2008-11-26 Daniel DunbarRevert 60071, depends on uncommitted LLVM changes.
2008-11-26 Ted KremenekMigrate token-cache generation logic from dummy harness...
2008-11-26 Ted KremenekAdd setter method PreprocessorLexer::setParsingPreproce...
2008-11-26 Nuno Lopesremove debug-only assertion in the complex float evalua...
next