]> granicus.if.org Git - clang/shortlog
clang
2009-04-15 Douglas GregorPCH support for string literals
2009-04-15 Daniel DunbarDriver: Add --help-hidden
2009-04-15 Fariborz Jahanian__objc_superrefs belongs to __DATA segment.
2009-04-15 Douglas GregorPCH support for UnaryOperator, SizeOfAlignOfExpr
2009-04-15 Anders CarlssonStart attempting to generate code for C++ ctors.
2009-04-15 Steve NaroffFix <rdar://problem/6789707> "warning: 'extern' variabl...
2009-04-15 Chris Lattnerrename variable in comment, not just in code :).
2009-04-15 Steve NaroffFix <rdar://problem/6791490> [clang10 regression] ...
2009-04-15 Chris Lattnerthis should be private
2009-04-15 Chris Lattneradd another sanity check for -Werror=xx
2009-04-15 Chris Lattneradd a missing &&
2009-04-15 Chris Lattnerfix a broken test, that passed for the wrong reason...
2009-04-15 Chris LattnerRejigger how -pedantic and -pedantic-errors work and...
2009-04-15 Douglas GregorImplement support for designated initializers that...
2009-04-15 Anders CarlssonAdd support for mangling C++ constructors. Review appre...
2009-04-15 Chris Lattnermake default diagnostic mapping more explicit in .td...
2009-04-15 Chris Lattnerremove some commented out -Wstrict-selector-match stuff.
2009-04-15 Douglas GregorSwitch designated-initializer checking from using desig...
2009-04-15 Douglas GregorDon't tip-to around BitstreamReader::JumpToBit jumping...
2009-04-15 Chris Lattnerclean up error messages.
2009-04-15 Chris Lattneradd Diagnostic.td to proj
2009-04-15 Chris LattnerAdd support for -Werror=foo and -Wno-error=foo
2009-04-15 Anders CarlssonAdd CGCXX.h with ctor/dtor type enumerations. No functi...
2009-04-15 Chris Lattnerrefactor a bunch of the warning parsing stuff to simpli...
2009-04-15 Chris Lattnerremove #include of system header, making this a) not...
2009-04-15 Anders CarlssonSimplify CodeGenFunction::GenerateCode.
2009-04-15 Zhongxing Xuremove dead code.
2009-04-15 Daniel DunbarTweaks to Objective-C metadata (32 & 64-bit) to match...
2009-04-15 Daniel DunbarDriver: For clang, accept -fsigned-bitfields and reject
2009-04-15 Douglas GregorPCH support for CStyleCastExpr and BinaryOperator expre...
2009-04-15 Daniel DunbarImprove "assignment to cast" diagnostic.
2009-04-14 Douglas GregorPCH support for ParenExpr
2009-04-14 Douglas GregorAdd PCH support for ImplicitCastExprs. This is the...
2009-04-14 Daniel DunbarStrip paren expressions when trying to diagnose "cast...
2009-04-14 Chris LattnerChange Lexer::MeasureTokenLength to take a LangOptions...
2009-04-14 Fariborz JahanianDiagnose properties which have no implementations;
2009-04-14 Daniel DunbarSet alignment on __cstring metadata variables to 1...
2009-04-14 Daniel DunbarAvoid use of magic \01 prefix when unneeded.
2009-04-14 Chris Lattneradd fixitrewriter to xcode proj
2009-04-14 Daniel DunbarComment fix.
2009-04-14 Chris LattnerMake the implicit-int handling error recovery stuff...
2009-04-14 Douglas GregorAdd PCH support for PredefinedExpr and FloatingLiteral...
2009-04-14 Chris Lattnerrefactor "implicit int error recovery" code out of
2009-04-14 Douglas GregorPCH support for a few very, very simple kinds of expres...
2009-04-14 Chris LattnerFix a regression in a previous patch that broke implicit
2009-04-14 Steve NaroffFix <rdar://problem/6252084> [sema] jumps into Obj...
2009-04-14 Chris Lattneradd support for -W[no-]extra-tokens
2009-04-14 Chris Lattnerremove dead enum
2009-04-14 Chris LattnerFix PR3988: extern inline functions get strong symbol...
2009-04-14 Fariborz JahanianDo not dead code strip global meta-data objects.
2009-04-14 Mike StumpFixup whitespacing.
2009-04-14 Chris Lattnertemporarily revert r69046
2009-04-14 Daniel DunbarFix comment.
2009-04-14 Douglas GregorAdd a tricky, tricky test case for PCH that we currentl...
2009-04-14 Chris Lattnerimplement some sema for gnuc_inline attribute. Reject...
2009-04-14 Anders CarlssonSupport code generation of 'this' exprs
2009-04-14 Sanjiv GuptaLiteral value calculation isn't likely to overflow...
2009-04-14 Chris Lattnerimplement codegen support for __attribute((__gnuc_inlin...
2009-04-14 Chris Lattnerrecognize the gnuc_inline attribute.
2009-04-14 Douglas GregorWhen building a PCH file, don't perform end-of-translat...
2009-04-14 Steve NaroffASTContext::mergeTypes(): Loosen up the type checking...
2009-04-14 Daniel DunbarRefactor how attributes are set on values.
2009-04-14 Daniel DunbarSplit SetGlobalValueAttributes into definition/declarat...
2009-04-14 Daniel DunbarRename (one) SetFunctionAttributes to SetLLVMFunctionAt...
2009-04-14 Daniel DunbarReduce indentation, no functionality change.
2009-04-14 Chris Lattnerdefer emission of always_inline, extern_inline, and...
2009-04-14 Chris Lattnergive always_inline functions internal linkage. If...
2009-04-14 Chris Lattnerset the linkage of an inline function according to...
2009-04-14 Daniel DunbarAdd a comment on SetGlobalValueAttributes.
2009-04-14 Chris Lattneradd a new enum type for linkage, no functionality change.
2009-04-14 Daniel DunbarClean up handling of visibility.
2009-04-14 Chris Lattnerreduce indentation, no functionality change.
2009-04-14 Chris Lattnerdo not set visibility on "private" or "available extern...
2009-04-14 Chris LattnerOffer a fixit hint for our warning about tokens at...
2009-04-14 Chris LattnerFix the #import / #include_next "extra tokens at end...
2009-04-14 Mike StumpUse hasAttr instead of getAttr for conditionals.
2009-04-14 Daniel DunbarAudit __private_extern__ handling.
2009-04-14 Daniel DunbarAdd VarDecl::getStorageClassSpecifierString (StorageCla...
2009-04-14 Mike StumpFixup CodeGen for __weak __block variables. Radar...
2009-04-14 Mike StumpFix build error.
2009-04-14 Steve NaroffChange dyn_cast<> to isa<>. Pointed out by Anders ...
2009-04-14 Douglas GregorWhen writing a PCH file, keep track of all of the non...
2009-04-14 Steve NaroffFix crasher in ASTContext::getObjCEncodingForMethodDecl().
2009-04-13 Douglas GregorPartial PCH support for FileScopeAsmDecl and BlockDecl...
2009-04-13 Douglas GregorPCH support for functions and their parameters.
2009-04-13 Eli FriedmanMinor work related to removing the assumption that...
2009-04-13 Eli FriedmanMinor simplification.
2009-04-13 Eli FriedmanPR3461: reject initializer for incomplete type. Based...
2009-04-13 Daniel DunbarRemove CheckBuiltinMacros script, obsoleted since we...
2009-04-13 Daniel DunbarIgnore Output directory
2009-04-13 Douglas GregorPCH support for record decls/types and their fields...
2009-04-13 Daniel DunbarUpdate to use hasAttr() instead of getAttr().
2009-04-13 Douglas GregorPrint the number (and percentage) of identifiers read...
2009-04-13 Douglas GregorIntroduce PCH (de-)serialization for most compound...
2009-04-13 Daniel DunbarReapply 68936, turned out to that clang's better debug...
2009-04-13 Steve NaroffMove/update recent FIXME (wrt UTF-8 checking for ObjC...
2009-04-13 Chris Lattnerupgrade "extra tokens at end of directive" to warn...
2009-04-13 Fariborz JahanianIn objc2's None-Fragile ABI, one cannot use the super...
2009-04-13 Steve NaroffFixed crasher in <rdar://problem/6780904> [irgen] Asser...
2009-04-13 Douglas GregorAdd PCH support for enumerations and enumerators.
next