]> granicus.if.org Git - clang/shortlog
clang
2009-11-11 Ted KremenekRefactor DereferenceChecker to use only the new Checker...
2009-11-11 John McCallPreserve source locations when building offsetof expres...
2009-11-11 Mike StumpMore VTT work. We now track offsets and use the ctor...
2009-11-11 Mike StumpFixup spacing.
2009-11-11 John McCallApparently the following idiom is specifically encouraged:
2009-11-11 Fariborz JahanianAvoid generating additional destructor(s) for initializ...
2009-11-11 Douglas GregorIntroduce a new representation for template template
2009-11-11 Daniel DunbarRecognize -fsyntax-only as a "consumer only" action.
2009-11-11 Daniel DunbarStringRefify some PCH interfaces.
2009-11-11 Daniel DunbarReplace startsWith functions with StringRef.
2009-11-11 Mike StumpStub out most of the VTT building code. WIP.
2009-11-11 John McCallCreate a new Scope when parsing a declaration with...
2009-11-10 Daniel DunbarAdd Diagnostic::Report method for reporting diagnostics...
2009-11-10 Daniel DunbarPreprocessorOptions: Get rid of unnecessary 'isPTH...
2009-11-10 Fariborz JahanianDiagnose illegally typed operator new/new[].
2009-11-10 Devang PatelAttach location info with llvm.dbg.declare.
2009-11-10 Ted KremenekAdd FIXIT hint for -Wsemicolon-before-method-body
2009-11-10 Eli FriedmanRevert r86741; it doesn't handle virtual bases correctly.
2009-11-10 Eli FriedmanMinor optimization to skip null check in generated...
2009-11-10 Eli FriedmanFix for PR5454: make sure to use the right block as...
2009-11-10 Ted KremenekShuffle order of warning declarations (alphabetize).
2009-11-10 Ted KremenekMake -Wsemicolon-before-method-body opt-in (and part...
2009-11-10 Daniel DunbarDecouple more of clang-cc by moving ImplicitP[CT]H...
2009-11-10 Ted KremenekUpdate CMake file.
2009-11-10 Benjamin KramerAdd newline at EOF.
2009-11-10 Benjamin KramerSilence warning.
2009-11-10 Dan GohmanUse #include <stdio.h> when using fprintf and stderr.
2009-11-10 Daniel Dunbarclang-cc: Start moving "pure" option handling to Option...
2009-11-10 Daniel Dunbarclang-cc: Sink more options inside codegenopts namespace.
2009-11-10 Daniel DunbarChange LangOpts initialization to directly test the...
2009-11-10 Douglas GregorImprove parsing of template arguments to lay the founda...
2009-11-10 Fariborz JahanianChanged a variable name to match what it represents
2009-11-10 Fariborz JahanianThis patch implements Code gen. for destruction of
2009-11-10 Ted KremenekCIndex: Only display diagnostics to llvm::errs() when...
2009-11-10 Mike StumpOnly generate a VTT for classes that need a VTT.
2009-11-10 Daniel DunbarDriver: Run 'clang' in C++ mode based on the name it...
2009-11-10 Daniel DunbarFactor out parts of InitializeCompileOptions that depen...
2009-11-10 Daniel DunbarLocalize -disable-llvm-optzns handling to BackendConsum...
2009-11-10 Daniel Dunbarclang-cc: Start sinking (CodeGen) options into namespac...
2009-11-10 Daniel DunbarCleanup some clang-cc FIXMEs
2009-11-10 Daniel DunbarAdd CompileOptions to CompilerInvocation.
2009-11-10 John McCallFix a similar problem with qualified lookup through...
2009-11-10 John McCallMake a somewhat more convincing test case for unqualifi...
2009-11-10 Zhongxing XuIgnore parentheses when check the type of the expr.
2009-11-10 John McCallSimple test case for [basic.lookup.udir].
2009-11-10 Zhongxing XuSizeofPointerChecker: Many false positives have the...
2009-11-10 Mike StumpAdd vtable caching to prevent multiple vtables for...
2009-11-10 John McCallFix unqualified lookup through using directives.
2009-11-10 Anders CarlssonWhen trying to assign a regular string literal to an...
2009-11-10 Anders CarlssonDon't try to emit null fixit hints.
2009-11-10 Zhongxing XuNow we can safely use the argument expression's source...
2009-11-10 Zhongxing XuSizeofPointerChecker: If an explicit type specifier...
2009-11-10 Anders CarlssonUse PP.getLocForEndOfToken as suggested by John.
2009-11-10 Zhongxing XuUse the source range of the whole sizeof expression...
2009-11-10 Anders CarlssonIf a function with a default argument is redefined...
2009-11-10 Anders CarlssonUpdate xode project.
2009-11-10 Zhongxing XuAdd test case for PointerSubChecker.
2009-11-10 Zhongxing XuRefine PointerSubChecker: compare the base region inste...
2009-11-10 Mike StumpBe sure to clear out VCall when we clear out VCalls.
2009-11-10 Zhongxing XuRename: StripCasts describes what it does better.
2009-11-10 Mike StumpFinish off mangling for the VTT.
2009-11-10 Mike StumpAdd mangling for the construction vtable.
2009-11-10 Jeffrey YasskinFix clang's use of DenseMap iterators after r86636...
2009-11-10 Daniel DunbarSimplify, following MemoryBuffer::getSTDIN API fix.
2009-11-10 Daniel DunbarSwitch to getFileOrSTDIN().
2009-11-10 Daniel DunbarRemove some if-0'd code, we can resurrect this if we...
2009-11-10 Douglas GregorMove all of the type-printing logic to its own C++...
2009-11-09 Daniel DunbarAdd PreprocessorOptions to CompilerInvocation.
2009-11-09 Daniel DunbarPrivatize InitHeaderSearch, this functionality is only...
2009-11-09 Daniel DunbarMove LangOptions, HeaderSearchOptions, and the target...
2009-11-09 Daniel DunbarSwitch Target* to Target&.
2009-11-09 Daniel DunbarAdd default initializer for Sysroot ivar.
2009-11-09 Daniel DunbarChange clang-cc to expect that all inputs have the...
2009-11-09 Daniel Dunbar(llvm up) Convert clang-cc.cpp:GetLanguage to StringSwitch.
2009-11-09 Mike StumpEnable the use of the new llvm objectsize intrinsic.
2009-11-09 Fariborz JahanianFurther change in a comment.
2009-11-09 Fariborz JahanianRemoved a FIXME on nested type specifier warning.
2009-11-09 Fariborz JahanianChanged error for nested type qualifier mismatch to
2009-11-09 Douglas GregorMake sure that Type::getAs<ArrayType>() (or Type::getAs...
2009-11-09 Ted KremenekRemove stale FIXME.
2009-11-09 Douglas GregorMake sure that we look into nested, transparent declara...
2009-11-09 Fariborz JahanianFor array pointee type, get its cvr qualifier from
2009-11-09 Daniel DunbarAdd CompilerInvocation object, to capture all the optio...
2009-11-09 Eli FriedmanStub out a few more warning groups.
2009-11-09 Benjamin KramerFix build after r86579.
2009-11-09 Douglas GregorMake sure that we instantiate default function argument...
2009-11-09 Eli FriedmanAdd additional note to mark the cause of synthesized...
2009-11-09 Douglas GregorImprove instantiation of default template arguments...
2009-11-09 Benjamin KramerFactor CXString creation into a helper method.
2009-11-09 Eli FriedmanAdd code generation test for r86500.
2009-11-09 Fariborz JahanianTest case for Sean Hunt's patch which I left out.
2009-11-09 Eli FriedmanAdd support for cdecl attribute. (As far as I know...
2009-11-09 Douglas GregorSlightly more testing for instantiation of non-type...
2009-11-09 Benjamin KramerWriting to a struct passed by value is pointless. Remov...
2009-11-09 Douglas GregorImprove c-index-test's parsing of the -code-completion...
2009-11-09 Anders CarlssonAdd a triple to try to fix the buildbot error.
2009-11-09 Steve NaroffIntroduce CXString type and associated functions clang_...
2009-11-09 Anders Carlsson__uint128_t is indeed an unsigned integer type. Fixes...
2009-11-09 Douglas GregorWhen transforming an InitListExpr, if we already comput...
2009-11-09 Douglas GregorC doesn't allow mixing declarations and statements...
next