]> granicus.if.org Git - clang/shortlog
clang
2010-01-05 Douglas GregorMake use of available_externally linkage for vtables...
2010-01-05 Ted KremenekAdd back #include of 'cstdio' to hopefully unbreak...
2010-01-05 Ted KremenekSplit code in CIndex.cpp into multiple source files...
2010-01-05 Fariborz JahanianAPI support for __block variables which are also __weak.
2010-01-05 Douglas GregorImprove key-function computation for templates. In...
2010-01-05 Mike StumpAdd code to skip the emission of available externally...
2010-01-05 Fariborz JahanianMinor clean up.
2010-01-05 Steve NaroffRemove bogus "C" from preamble block decls.
2010-01-05 Fariborz JahanianMore rewriting of __block APIs. wip.
2010-01-05 Steve NaroffFix <rdar://problem/7490212> clang rewriter: return...
2010-01-05 Zhongxing XuMove test case to a more appropriate file.
2010-01-05 Zhongxing XuAdd test case.
2010-01-05 Zhongxing XuRevert r92318. Instead fix the analyzer: do not call
2010-01-05 Zhongxing Xuif an arraytype is canonical, then its element is guara...
2010-01-05 Nate BegemanAllow clang to pass -x cl through to compiler driver.
2010-01-05 Anders CarlssonWhen emitting member function pointers, use the canonic...
2010-01-05 Mike StumpAdd a radar reference.
2010-01-05 Mike StumpDisallow captured arrays in blocks as well. Radar...
2010-01-05 Mike StumpDisallow capturing vlas inside blocks.
2010-01-05 Ted KremenekMake static analysis support for C++ 'this' expression...
2010-01-05 Chris Lattnerfix a bug mike noticed.
2010-01-05 Fariborz JahanianMore rewriting of __block objective-c pointer variables...
2010-01-05 Ted KremenekRemove stale comment. We already do format string...
2010-01-05 Mike StumpFix warnings.
2010-01-05 Ted KremenekRemove references to 'Checker' and 'GRTransferFuncs...
2010-01-04 John McCallMove the -Wconversion logic into SemaChecking.cpp....
2010-01-04 John McCallMove the -Wsign-compare logic into SemaChecking.cpp.
2010-01-04 Mike StumpAvoid warnings for functions that return a value using...
2010-01-04 Mike StumpRemember if the AsmStmt came from Microsoft-style inlin...
2010-01-04 John McCall-Wsign-compare shouldn't warn when the signed operand...
2010-01-04 Douglas GregorMake sure to use ASTContext::getAs*ArrayType() when...
2010-01-04 Daniel DunbarAdd missing newline (which breaks MSVC build???)
2010-01-04 Fariborz JahanianMore rewriting of __block declared objective-c/block...
2010-01-04 Douglas GregorTurn on code-completion for macros within CIndex
2010-01-04 Douglas GregorTeach Preprocessor::macro_begin/macro_end to lazily...
2010-01-04 Daniel DunbarRevert r92431, this code isn't dead and broke the ntfs...
2010-01-04 Daniel DunbarFix -Asserts warning.
2010-01-04 Douglas GregorWhen declaring an Objective-C implementation without...
2010-01-03 Benjamin Kramer__builtin_object_size(ptr, type) returns -1 for type...
2010-01-03 Douglas GregorImplement typo correction for a variety of Objective...
2010-01-03 Eli FriedmanBetter coverage for -dump-record-layouts and -print...
2010-01-03 Eli FriedmanImprove coverage for test.
2010-01-03 Eli FriedmanGet rid of more dead code.
2010-01-03 Eli FriedmanAdd test for annotate attribute for coverage.
2010-01-03 Eli FriedmanFix minor oversight for increment/decrement of complex...
2010-01-02 Eli FriedmanGet rid of some unnecessary code.
2010-01-02 Eli FriedmanDelete impossible case.
2010-01-02 Eli FriedmanAdd a couple more tests for coverage.
2010-01-02 Eli FriedmanGet rid of more unnecessary code.
2010-01-02 Eli FriedmanGet rid of some unnecessary code.
2010-01-02 Eli FriedmanEliminate dead code.
2010-01-02 Anders CarlssonSpeculative MSVC fix.
2010-01-02 Anders CarlssonMove address points to CGVtableInfo, no functionality...
2010-01-02 Anders CarlssonCorrectly pass VTT parameters to constructors and destr...
2010-01-01 Anders CarlssonMove a few more functions away from CGCXX and to CGClas...
2010-01-01 Douglas GregorMake sure that the search for visible declarations...
2010-01-01 Douglas GregorFix typo test RUN lines
2010-01-01 Mike StumpFix last patch, catch of reference to non-pointer.
2010-01-01 Mike StumpFix catching a reference to a pointer.
2010-01-01 Douglas GregorWhen typo correction for an id-expression finds a type...
2010-01-01 Douglas GregorTypo correction for C99 designated field initializers...
2009-12-31 Anders CarlssonIf the key function of a record is inline, then the...
2009-12-31 Anders CarlssonIt's OK for a return type to be incomplete if it's...
2009-12-31 Anders CarlssonMake sure that an overriding return type is complete...
2009-12-31 Anders CarlssonRemove rtti.cpp, it's very fragile and has been marked...
2009-12-31 Anders CarlssonMore RTTI builder cleanup.
2009-12-31 Benjamin KramerAvoid an unnecessary copy of Predefines. getMemBufferCo...
2009-12-31 Benjamin KramerConvert to StringRef, avoid a memcpy in the common...
2009-12-31 Douglas GregorTypo correction for C++ base and member initializers...
2009-12-31 Douglas GregorAdd another typo test for nested-name-specifiers
2009-12-31 Douglas GregorTypo correction for identifiers within nested name...
2009-12-31 Douglas GregorTypo correction for template names, e.g.,
2009-12-31 Douglas GregorTypo correction for member access into classes/structs...
2009-12-31 Zhongxing XuLet constraint manager inform checkers that some assump...
2009-12-31 Douglas GregorImplement typo correction for id-expressions, e.g.,
2009-12-31 Chris Lattnerimprove diagnostics for case when a field type is unkno...
2009-12-30 Anders CarlssonFix a bunch of bugs with VMI RTTI building, and add...
2009-12-30 Zhongxing XuThe element type should also be canonicalized. Add...
2009-12-30 Chris Lattnertestcase for previous patch!
2009-12-30 Chris Lattnerwhen making a decl for __builtin_fabsf() make sure to
2009-12-30 Zhongxing XuFix a comment.
2009-12-30 Chris Lattnerfix PR5917, L'x' was getting the wrong type in c++...
2009-12-30 Fariborz JahanianWhen rewriting a __block declaration, use a suitable...
2009-12-30 Chris Lattnerremove extraneous #include
2009-12-30 Douglas GregorTypo correction for type names when they appear in...
2009-12-30 Douglas GregorFix typo in comment
2009-12-30 Zhongxing XuRemove an duplicated #include.
2009-12-30 Zhongxing XuSimplify code by using an equivalent template class.
2009-12-30 Chandler CarruthMore fixes to the handling of CVR-comparisons on array...
2009-12-30 Anders CarlssonAdd base class checks.
2009-12-30 Anders CarlssonAdd more vtable tests.
2009-12-30 Anders CarlssonMore RTTI cleanup, test that RTTI classes have the...
2009-12-30 John McCallTypedefs can be redeclared. That seems like something...
2009-12-30 Eli FriedmanTest for PR5908.
2009-12-30 Eli FriedmanMake sure to explicitly pass type/value dependence...
2009-12-29 Anders CarlssonMatch gcc and treat vector types as fundamental types.
2009-12-29 Anders CarlssonHandle enum types as well.
2009-12-29 Anders CarlssonTest linkage of RTTI descriptors of array types.
2009-12-29 Anders CarlssonFix function type RTTI linkage and add tests.
2009-12-29 Chandler CarruthFix support for const_cast<>s of array types which...
next