]> granicus.if.org Git - clang/shortlog
clang
2009-03-26 Chris Lattnermost of this is plumbing to get CompileOptions down...
2009-03-26 Chris Lattnermake this self contained, declare everything as 'class'.
2009-03-26 Chris Lattnersort items.
2009-03-26 Chris Lattneradd driver and clang-cc to project.
2009-03-26 Ted Kremenekanalyzer infrastructure: make a bunch of changes to...
2009-03-26 Anders CarlssonSet the access specifier for templates inside classes.
2009-03-26 Anders CarlssonFactor the member access specifier setting code into...
2009-03-26 Anders CarlssonHandle parsing of templates in member declarations...
2009-03-26 Anders CarlssonCheck that the access specifier of a member redeclarati...
2009-03-26 Eli FriedmanFix for PR3869: actually enforce that the argument...
2009-03-26 Douglas GregorThe injected-class-name of class templates and class...
2009-03-25 Anders CarlssonTighten the setAccess assert. We now allow AS_none...
2009-03-25 Douglas GregorImplement template instantiation for static data member...
2009-03-25 Fariborz JahanianMore for for objc2's ivar layout map (currently
2009-03-25 Douglas GregorPass access specifiers through to member classes and...
2009-03-25 Douglas GregorFix notes regarding the instantiation of member classes...
2009-03-25 Douglas GregorInstantiation for member classes of class templates...
2009-03-25 Chris Lattnerfix PR3880, fixing a comma swallowing bug handling...
2009-03-25 Chris Lattnerremove some dead code. ArgTokens can never be empty...
2009-03-25 Ted KremenekCMake: Also include header files in target when the...
2009-03-25 Anders CarlssonIt doesn't make sense to set the access specifier to...
2009-03-25 Mike StumpRemove -f__block as codegen for __block variables shoul...
2009-03-25 Mike StumpFixup codegen for block literals that bleed copy/dispos...
2009-03-25 Mike StumpUpdate to account for the great driver renaming.
2009-03-25 Douglas GregorPredicate to detect when a RecordDecl is really the...
2009-03-25 Douglas GregorStub out some declaration kinds that cannot ever be...
2009-03-25 Douglas GregorFix parsing of template classes prefixed by nested...
2009-03-25 Douglas GregorMinor refactoring to eliminate an extra switch during...
2009-03-25 Daniel DunbarDriver: Implement Darwin_X86 tool chain level argument...
2009-03-25 Daniel DunbarDriver: Handle -Xarch_, including warning for nasty...
2009-03-25 Daniel DunbarDriver: Replace Option::ForwardToGCC by Option::DriverO...
2009-03-25 Zhongxing XuThis patch adds two more SymbolData subclasses: SymIntE...
2009-03-25 Daniel DunbarDriver: Fix typo in JoinedAndSeparateArg::render.
2009-03-25 Daniel DunbarDriver: Prep for tool chain specific argument translation.
2009-03-25 Chris Lattnersimplify some conditionals, don't copy LangOptions.
2009-03-25 Daniel Dunbargcc 4.3 finds my use of ^ suspicious.
2009-03-25 Anders CarlssonImprove handling of base initializers. We now parse...
2009-03-25 Anders CarlssonAdd the .td files and remove the .def files from the...
2009-03-25 Ted KremenekTurn on -analyzer-eagerly-assume by default when using...
2009-03-25 Douglas GregorTemplate instantiation for conversion functions
2009-03-25 Ted KremenekTurn on '-analyzer-eagerly-assume' by default in ccc...
2009-03-25 Douglas GregorMove template instantiation for expressions into a...
2009-03-25 Douglas GregorIn Parser::ParseClassSpecifier, don't conflate a NULL...
2009-03-24 Sebastian RedlParse deleted function definitions and hook them up...
2009-03-24 Devang PatelEncode language.
2009-03-24 Douglas GregorType::isObjectType now implements the (more sensible...
2009-03-24 Daniel DunbarDriver: Handle -flto, -O4, and tweak -emit-llvm to...
2009-03-24 Douglas GregorFix a few isObjectTypes that really need to be isIncomp...
2009-03-24 Douglas GregorMake sure to use RequireCompleteType rather than testin...
2009-03-24 Daniel DunbarDriver: Warn when 'clang' is used to compile a source...
2009-03-24 Daniel DunbarDriver: Change default use of "clang" compiler.
2009-03-24 Daniel DunbarMove ToolChain::ShouldUseClangCompiler to
2009-03-24 Daniel DunbarDriver: Translate -fverbose-asm for LLVM backend.
2009-03-24 Mike StumpReally fix cmake style builds.
2009-03-24 Daniel DunbarDriver: Result files shouldn't be removed on failure...
2009-03-24 Daniel DunbarDriver: ArgList::getLastArg was in fact returning the...
2009-03-24 Anders CarlssonFix the bug that Eli noticed where we wouldn't look...
2009-03-24 Chris Lattnerimprove error recovery for when type parsing fails.
2009-03-24 Chris Lattnerfix "Comment#1" from PR3872
2009-03-24 Chris Lattnerrandom cleanups.
2009-03-24 Douglas GregorTemplate instantiation for constructors
2009-03-24 Chris Lattner-arch ppc should change the triple to powerpc-foo not...
2009-03-24 Douglas GregorAdd another C++ open project
2009-03-24 Chris Lattnerchange the __VERSION__ string to be more sensible....
2009-03-24 Daniel DunbarDriver: Forward -MMD (not -MM) to clang-cc; this got...
2009-03-24 Daniel DunbarUpdate TestRunner.sh for renaming.
2009-03-24 Ted KremenekMore path updates with clang-cc...
2009-03-24 Ted KremenekUpdate scan-build/ccc-analyzer to use 'clang-cc' instea...
2009-03-24 Daniel DunbarInstall clang-cc to libexec/clang-cc (instead of bin...
2009-03-24 Daniel DunbarRename clang-driver to clang.
2009-03-24 Daniel DunbarMove <root>/Driver into <root>/tools/clang-cc.
2009-03-24 Daniel DunbarAdd CMake files for tools/driver; I am just guessing...
2009-03-24 Daniel DunbarSupport member reference on ?: of struct type.
2009-03-24 Daniel DunbarRename clang to clang-cc.
2009-03-24 Daniel DunbarUse not instead of ! in tests.
2009-03-24 Anders CarlssonHandle pointers to arrays of abstract types.
2009-03-24 Anders CarlssonRemove a task that's completed now.
2009-03-24 Anders Carlssonclass.abstract is complete. Anything that doesn't work...
2009-03-24 Anders CarlssonMore work on diagnosing abstract classes. We can now...
2009-03-24 Eli FriedmanFix PR3868 by making Evaluate handle cases like "(long...
2009-03-24 Eli FriedmanFix a couple of tests.
2009-03-24 Daniel Dunbarccc: Have generic GCC tool chain search the driver...
2009-03-24 Douglas GregorCleanup template instantiation for methods, destructors
2009-03-24 Ted KremenekUpdate checker build.
2009-03-24 Daniel DunbarDriver: lipo wasn't being called correctly (translation...
2009-03-24 Daniel Dunbarccc/Driver: -r option doesn't take an argument.
2009-03-24 Douglas GregorTemplate instantiation for destructors. This is somewha...
2009-03-23 Eli FriedmanFix the ABI convention for struct returns on x86 outsid...
2009-03-23 Douglas GregorAnother use of adjustParameterType. Plus, GetTypeForDec...
2009-03-23 Douglas GregorTemplate instantiation for the declarations of member...
2009-03-23 Ted KremenekDeallocate 'DeclRefExpr's in correctly formed '#pragma...
2009-03-23 Ted KremenekA test case to test that -warn-dead-stores does not...
2009-03-23 Ted KremenekImplement '#pragma unused'.
2009-03-23 Daniel DunbarDriver: Make argument parsing fast.
2009-03-23 Anders CarlssonAdd SemaTypeInstantiateDecl.cpp
2009-03-23 Ted KremenekUpdate checker build.
2009-03-23 Daniel DunbarDriver: Fix off by one in computation of first searchab...
2009-03-23 Fariborz JahanianMust allow for strong cast of floats as well (objc2...
2009-03-23 Anders CarlssonMore improvements to abstract type checking. Handle...
2009-03-23 Daniel DunbarDriver: Add two special groups of "whitelisted" options...
next