]> granicus.if.org Git - clang/shortlog
clang
2009-04-17 Chris Lattnerrefactor htmldiags to be created up front like the...
2009-04-17 Chris Lattneradd a virtual method to DiagnosticClient to get rid...
2009-04-17 Douglas GregorPCH tests for va_arg expressions. Verified that the...
2009-04-17 Chris Lattnerfix a crash on invalid by making ActOnDeclarator create...
2009-04-17 Douglas GregorPCH support for blocks
2009-04-17 Chris Lattnerwire up comment diagnostics to -Wcomment, add it to...
2009-04-17 Douglas GregorPCH support for GNU statement expressions
2009-04-17 Douglas GregorPCH support for indirect gotos and address-of-label...
2009-04-17 Chris Lattneradjust for the new -Wvector-conversions option
2009-04-17 Chris Lattnermove a vector conversion warning to be diabled by defau...
2009-04-17 Douglas GregorPCH support for labels and goto.
2009-04-17 Steve NaroffUpdate Xcode project with some PCH related headers.
2009-04-17 Chris Lattnerfix misspelt attribute.
2009-04-17 Chris LattnerFix rdar://6800926 - crash compiling non-fragile _Bool...
2009-04-17 Chris Lattnertidy some code.
2009-04-17 Chris Lattnerclean up run lines.
2009-04-17 Chris Lattneradd basic support for building DiagnosticGroups.inc...
2009-04-17 Douglas GregorPCH support for declaration statements, and a test...
2009-04-17 Douglas GregorPCH support for return statements.
2009-04-17 Sebastian RedlImplement lvalue test for conditional expressions.
2009-04-17 Fariborz JahanianAdded -print-ivar-layout option. No change in functionality
2009-04-17 Anders CarlssonAdd support for the __has_trivial_destructor type trait.
2009-04-17 Anders CarlssonAdd support for generating (very basic) C++ destructors...
2009-04-17 Daniel DunbarSupport QA_OVERRIDE_GCC3_OPTIONS
2009-04-17 Daniel DunbarAttributes on block functions were not being set.
2009-04-17 Douglas GregorPCH support for do-while and for loops
2009-04-17 Douglas GregorPCH support for while and continue statements
2009-04-17 Mike StumpFixup semantic analysis for nested blocks, and allow...
2009-04-17 Anders CarlssonImplement basic code generation of constructor calls...
2009-04-17 Douglas GregorPCH support for the first batch of statements, includin...
2009-04-16 Anders CarlssonAdd GetAddrOfCXXConstructor and use it.
2009-04-16 Anders CarlssonAdd constructor getter to CXXTemporaryObjectExpr.
2009-04-16 Anders CarlssonIf a class has a non-trivial constructor that doesn...
2009-04-16 Chris Lattner-Wall is -Wmost -Wparentheses
2009-04-16 Daniel DunbarDriver: Allow using clang as a precompiler, even if...
2009-04-16 Douglas GregorClean up the declaration-decoding step in the PCH reade...
2009-04-16 Douglas GregorPrepare PCH reader and writer for (de-)serialization...
2009-04-16 Fariborz JahanianRemoved a no longer needed FIXME comment.
2009-04-16 Steve NaroffFix <rdar://problem/6765383> clang-6: clang does not...
2009-04-16 Fariborz JahanianCategory method synbols must be qualified by gategory...
2009-04-16 Sebastian RedlFix a crash bug when comparing overload quality of...
2009-04-16 Eli FriedmanAttempt to fix a read-after-free running test/Sema...
2009-04-16 Eli FriedmanForce target triple for test depending on __weak.
2009-04-16 Anders CarlssonWhen we create an implicit CXXTemporaryObjectExpr we...
2009-04-16 Daniel DunbarEnsure that the most recent declaration of a tentative...
2009-04-16 Daniel DunbarPass -fdiagnostics-show-option to clang-cc by default.
2009-04-16 Chris Lattnerother half of 69274
2009-04-16 Chris Lattnersplit diagnostic group definitions out into their own...
2009-04-16 Chris Lattneroptimize and comment GetDiagInfo.
2009-04-16 Chris Lattnermerge several scattered tables into StaticDiagInfo.
2009-04-16 Chris LattnerImplement Diagnostic::getWarningOptionForDiag with...
2009-04-16 Chris Lattnertblgen is now passing diagnostic group information...
2009-04-16 Chris Lattnerimplement framework for -fdiagnostics-show-option,...
2009-04-16 Anders CarlssonDisable the code I added before until I understand...
2009-04-16 Chris Lattnermove handling of -pedantic and -pedantic-errors into...
2009-04-16 Chris Lattnerarrange for -Wno-error=foo warnings to be immune to...
2009-04-16 Chris Lattnerchange mappings to distinguish between "unset", "set...
2009-04-16 Daniel DunbarDriver: Remove the majority of -W* options, the driver...
2009-04-16 Chris Lattneruse getDiagnosticLevel instead of getDiagnosticMapping...
2009-04-16 Daniel DunbarDriver: Forward -W* to clang, it can handle all these...
2009-04-16 Chris Lattnerswitch DiagMappings *back* to 4 bits per diag.
2009-04-16 Chris Lattnerimplement -Wno-#warnings etc.
2009-04-16 Douglas GregorEliminate pch::TYPE_ATTR, which is never used
2009-04-16 Douglas GregorPCH support for CompoundLiteralExpr. This is the last...
2009-04-16 Douglas GregorPCH support for InitListExpr, DesignatedInitExpr, and...
2009-04-16 Chris Lattnerwhen tblgen fills in all the subgroup info, clang is...
2009-04-16 Chris Lattneradd scafolding to represent heirarchical warnings,...
2009-04-16 Anders CarlssonAdd support for the __has_trivial_constructor type...
2009-04-16 Douglas GregorPCH support for ShuffleVectorExpr and BlockDeclRefExpr
2009-04-15 Douglas GregorPCH support for TypesCompatibleExpr, ChooseExpr, and...
2009-04-15 Douglas GregorPCH support for ExtVectorElementExpr and VAArgExpr.
2009-04-15 Chris Lattnermake unknown warnings a warning, not an error.
2009-04-15 Chris Lattneradd anonymous groups for all the warning command line...
2009-04-15 Douglas GregorPCH support for CompoundAssignOperator and ConditionalO...
2009-04-15 Chris Lattneradd support for -Wextra and -W
2009-04-15 Chris Lattnercomment out IsGroup: tblgen isn't instantiating these...
2009-04-15 Douglas GregorPCH support for ImaginaryLiteral and ArraySubscriptExpr
2009-04-15 Mike StumpFixup codegen for copy/dispose for block literals....
2009-04-15 Daniel DunbarDefer generation of tentative definitions.
2009-04-15 Douglas GregorPCH support for ExtQualType
2009-04-15 Fariborz JahanianFix decl type merges when they have
2009-04-15 Devang PatelSet DebugInfo at the beginning of GenerateBlockFunction().
2009-04-15 Anders CarlssonWhen declaring a variable that has a constructor and...
2009-04-15 Daniel DunbarAdd warning when a tentative array definition is assume...
2009-04-15 Douglas GregorPCH support for declaration attributes
2009-04-15 Anders CarlssonActually generate code for the simple constructors...
2009-04-15 Chris Lattneruse tablgen-generated warning groups.
2009-04-15 Chris Lattnergenerate diagnostic group tables, this requires llvm...
2009-04-15 Chris Lattnerfix a name shadowing problem in tblgen.
2009-04-15 Chris Lattneruse slightly more verbose to work around a tblgen bug...
2009-04-15 Chris Lattnermove clang specific makefile goop to clang instead...
2009-04-15 Daniel DunbarDon't use \01 in symbol name if unnecessary.
2009-04-15 Steve NaroffFix <rdar://problem/6786597> varargs not supported...
2009-04-15 Fariborz JahanianPatch to remove a bogus warning which pointed to underl...
2009-04-15 Daniel DunbarFix alignment on obj_msgrefs to match llvm-gcc.
2009-04-15 Daniel DunbarAdd test case for superrefs section (and make spacing...
2009-04-15 Chris Lattnerfix some out of bounds array access problems, which...
2009-04-15 Douglas GregorPCH support for the string literal of a FileScopeAsmDecl.
2009-04-15 Chris Lattnermove some pp diags to the right .td file.
2009-04-15 Chris Lattnerannotate diagnostics with which groups they belong...
next