Age | Commit message (Expand) | Author |
2009-11-17 | Replace (-INT8_C(128)), which uses an illegally out-of-range argument for | Ken Dyck |
2009-11-17 | Adjust format attribute index for implicit object arguments. Fixes PR5521. | Sebastian Redl |
2009-11-17 | Implement code completion for Objective-C message sends to "super". | Douglas Gregor |
2009-11-17 | Fixes a typo, reported by Doug. | Fariborz Jahanian |
2009-11-17 | Fix PR5531. | Anders Carlsson |
2009-11-17 | Augment code-completion results to provide argument names and | Douglas Gregor |
2009-11-17 | StringRef'ify CodeCompletionString | Douglas Gregor |
2009-11-17 | Use the INTn_C integer constant macros to generate limit constants with correct | Ken Dyck |
2009-11-17 | recognize .hpp as c++ (needed for ./configure'ing boost) | Nuno Lopes |
2009-11-17 | add Fedora 11 include path. what a crap.. | Nuno Lopes |
2009-11-17 | Remove unnecessary parens around the bodies of integer constant macros. C99 | Ken Dyck |
2009-11-17 | Temporarily unbreak the clang-on-llvm tests. :) Not going to fix unresolved | John McCall |
2009-11-17 | Skip over shadow using decls during codegen. | John McCall |
2009-11-17 | Simplify CompilerInvocation::toArgs, now that LangOptions handling is more pr... | Daniel Dunbar |
2009-11-17 | Eliminate TargetInfo::getDefaultLangOptions, this kind of logic is better done | Daniel Dunbar |
2009-11-17 | Add PreVisitReturn to Malloc checker. Now we can recognize returned memory | Zhongxing Xu |
2009-11-17 | Add -fblocks, -stack-protector, and -fobjc-nonfragile-abi defaulting to driver, | Daniel Dunbar |
2009-11-17 | Add driver::types::isObjC predicate. | Daniel Dunbar |
2009-11-17 | Add EvalEndPath interface to Checker. Now we can check memory leaked at the | Zhongxing Xu |
2009-11-17 | Store "sugared" decls in LookupResults (i.e. decl aliases like using declarat... | John McCall |
2009-11-17 | Clear the dest set. | Zhongxing Xu |
2009-11-17 | Move -fnext-runtime defaulting to driver (and change clang-cc default to | Daniel Dunbar |
2009-11-17 | Move -fms-extensions defaulting to driver, instead of using getDefaultLangOpt... | Daniel Dunbar |
2009-11-17 | Be more careful with anonymous namespaces, since Clang diagnoses the ambiguit... | Douglas Gregor |
2009-11-17 | Move char-is-signed defaulting to driver, instead of using | Daniel Dunbar |
2009-11-17 | Silence some warnings produced by Clang, and add a missing header | Douglas Gregor |
2009-11-17 | Implement template instantiation for using directives, which is dead simple. | Douglas Gregor |
2009-11-17 | Add initial cut at CompilerInvocation::toArgs, which "serializes" the Compile... | Daniel Dunbar |
2009-11-17 | Instead of hanging a using declaration's target decls directly off the using | John McCall |
2009-11-17 | Simplify PreprocessorOptions, it doesn't need abstracted field access. | Daniel Dunbar |
2009-11-17 | Require the object type of a member access expression ("." or "->") to | Douglas Gregor |
2009-11-17 | Remove unused IsCXXAware and IgnoreSysRoots option from HeaderSearchOptions::... | Daniel Dunbar |
2009-11-17 | Unify the way destructor epilogues are generated for synthesized and regular ... | Anders Carlsson |
2009-11-17 | More const is always good. | Anders Carlsson |
2009-11-17 | Fix typo. Thanks Ted. | Mike Stump |
2009-11-17 | Add typeinfo support for T* and const T* for all builtin types T. | Mike Stump |
2009-11-17 | Add typeid for the builtin types. WIP. | Mike Stump |
2009-11-17 | Carry lookup configuration throughout lookup on the LookupResult. Give | John McCall |
2009-11-17 | PR5526: Make sure to set the right cast kinds for the inserted implicit casts. | Eli Friedman |
2009-11-17 | When querying type qualifiers on QualType via one of the "non-local" | Douglas Gregor |
2009-11-17 | Ensure we peer through () when handling typeid(*p). | Mike Stump |
2009-11-17 | Since we always have 2 edges, we don't need to reserve 3 slot for the | Mike Stump |
2009-11-17 | Minor CFG refinements for typeid and dynamic_cast. | Mike Stump |
2009-11-16 | Fix up EmitMemberInitializer to handle many more cases. | Eli Friedman |
2009-11-16 | Reorganize EmitMemberInitializer to put anonymous unions on the common codepath. | Eli Friedman |
2009-11-16 | Simplify the AST a bit by skipping creating member initializers for members | Eli Friedman |
2009-11-16 | Make member initializers for union members work correctly. | Eli Friedman |
2009-11-16 | Implement dynamic_cast<void*>(E). | Mike Stump |
2009-11-16 | Store more information in HeaderSearchOptions so that its initialization is not | Daniel Dunbar |
2009-11-16 | Implement a few more cases for copy constructor synthesis. | Eli Friedman |