| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | ASTContext.h: replace include by a forward declaration. | Dmitri Gribenko | 2012-08-02 | 1 | -0/+1 |
* | Comment parsing: add support for \tparam command on all levels. | Dmitri Gribenko | 2012-07-31 | 1 | -1/+10 |
* | Implement resolving of HTML character references (named: &, decimal: *, | Dmitri Gribenko | 2012-07-27 | 1 | -1/+2 |
* | Final piece of core issue 1330: delay computing the exception specification of | Richard Smith | 2012-07-27 | 1 | -3/+6 |
* | Implement an optimization for finding the comment that occurs just after a | Dmitri Gribenko | 2012-07-17 | 1 | -6/+24 |
* | Related to PR11848 and core-21989: switch ContainsUnexpandedParameterPack from | Richard Smith | 2012-07-16 | 1 | -4/+11 |
* | Add a per target max vector alignment field (e.g., 32-byte alignment for x86 ... | Chad Rosier | 2012-07-13 | 1 | -0/+4 |
* | Attaching comments to declarations during parsing: handle more Objective-C de... | Dmitri Gribenko | 2012-07-13 | 1 | -2/+14 |
* | [Windows] Use thiscall as the default calling convention for class methods. P... | Timur Iskhodzhanov | 2012-07-12 | 1 | -2/+8 |
* | Enable comment parsing and semantic analysis to emit diagnostics. A few | Dmitri Gribenko | 2012-07-11 | 1 | -4/+8 |
* | Restrict the set of declaration kinds for which we allow trailing comments. | Dmitri Gribenko | 2012-07-06 | 1 | -1/+1 |
* | Don't store pointers into a std::vector (RawCommentList::Comments). Although | Dmitri Gribenko | 2012-07-06 | 1 | -9/+10 |
* | Use C++ cast. | Dmitri Gribenko | 2012-07-06 | 1 | -1/+2 |
* | ASTContext.cpp: Appease msvc to cast NULL to typed pointer, or msvc mistakes ... | NAKAMURA Takumi | 2012-07-06 | 1 | -1/+1 |
* | Implement AST classes for comments, a real parser for Doxygen comments and a | Dmitri Gribenko | 2012-07-06 | 1 | -4/+36 |
* | Remove get(V)BaseClassOffsetInBits, the CharUnit functions should be used ins... | Benjamin Kramer | 2012-07-04 | 1 | -2/+2 |
* | PR13189: va_list broken with precompiled headers | Meador Inge | 2012-07-01 | 1 | -0/+14 |
* | blocks: fixes a crash when encoding block type | Fariborz Jahanian | 2012-06-30 | 1 | -0/+2 |
* | objective-c IRGen: fixes a crash when method type is being mangled | Fariborz Jahanian | 2012-06-29 | 1 | -4/+4 |
* | Remove redundant check. | Dmitri Gribenko | 2012-06-28 | 1 | -0/+2 |
* | Attaching comments to declarations: don't attach comments to implicit declara... | Dmitri Gribenko | 2012-06-28 | 1 | -0/+4 |
* | Attaching documentation comments to declarations: don't attach a comment to a... | Dmitri Gribenko | 2012-06-27 | 1 | -2/+3 |
* | Implement a lexer for structured comments. | Dmitri Gribenko | 2012-06-26 | 1 | -2/+2 |
* | VC9 does not like heterogenous compare function objects. | Dmitri Gribenko | 2012-06-21 | 1 | -1/+1 |
* | Restructure how the driver communicates information about the | John McCall | 2012-06-20 | 1 | -1/+1 |
* | Structured comment parsing, first step. | Dmitri Gribenko | 2012-06-20 | 1 | -0/+102 |
* | Explicitly build __builtin_va_list. | Meador Inge | 2012-06-16 | 1 | -8/+225 |
* | Documentation cleanup: eliminated Doxygen warnings by deleting a doc comment | James Dennett | 2012-06-15 | 1 | -8/+0 |
* | PR13064: Store whether an in-class initializer uses direct or copy | Richard Smith | 2012-06-10 | 1 | -4/+4 |
* | Add ext_vector type code for builtins, from John Garvin! | Douglas Gregor | 2012-06-07 | 1 | -0/+13 |
* | Plug a long standing memory leak in TemplateArgument. | Benjamin Kramer | 2012-06-07 | 1 | -2/+1 |
* | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie | 2012-06-06 | 1 | -5/+5 |
* | CUDA: add CodeGen support for global variable address spaces. | Peter Collingbourne | 2012-05-20 | 1 | -1/+4 |
* | Added two missing const qualifiers. | Abramo Bagnara | 2012-05-17 | 1 | -2/+2 |
* | Fix handling of wint_t - we can't assume wint_t is purely an integer promotio... | James Molloy | 2012-05-04 | 1 | -0/+2 |
* | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie | 2012-04-30 | 1 | -5/+5 |
* | When @encode'ing a C++ class that has empty base classes, we can end | Douglas Gregor | 2012-04-27 | 1 | -5/+2 |
* | PR 12586: Fix assert while running libc++ testsuite: deal with exception | Richard Smith | 2012-04-19 | 1 | -1/+1 |
* | Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. | Richard Smith | 2012-04-17 | 1 | -0/+2 |
* | objective-c modern translator: buildit objc bool | Fariborz Jahanian | 2012-04-16 | 1 | -1/+2 |
* | Implement support for null non-type template arguments for non-type | Douglas Gregor | 2012-04-06 | 1 | -2/+5 |
* | Fix a comment: kPropertyType = 'T' not 't'. <rdar://problem/11095729> | Bob Wilson | 2012-03-22 | 1 | -1/+1 |
* | Report the natural alignment of unsigned long long, not the preferred alignment. | Chad Rosier | 2012-03-21 | 1 | -1/+2 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -11/+11 |
* | [AST] Memoize ASTContext::getTypeInfo(). | Daniel Dunbar | 2012-03-09 | 1 | -4/+15 |
* | Make sure we consistently canonicalize types when canonicalizing TemplateTemp... | Eli Friedman | 2012-03-07 | 1 | -3/+5 |
* | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek | 2012-03-06 | 1 | -1/+4 |
* | Use TinyPtrVector instead of UsuallyTinyPtrVector. | Argyrios Kyrtzidis | 2012-03-06 | 1 | -6/+0 |
* | Properly handle non-canonical underlying types in | Peter Collingbourne | 2012-03-05 | 1 | -1/+1 |
* | Avoid an unnecessary recursive loop between type canonicalization and NNS can... | Eli Friedman | 2012-03-03 | 1 | -18/+5 |