Age | Commit message (Expand) | Author |
2009-07-31 | Canonicalize dependent extended vector types. | Douglas Gregor |
2009-07-31 | Build canonical types for dependently-sized array types. | Douglas Gregor |
2009-07-30 | Canonicalization of dependent C++0x decltype types. | Douglas Gregor |
2009-07-30 | Canonicalization for dependent typeof(expr) types. | Douglas Gregor |
2009-07-29 | Change uses of: | Ted Kremenek |
2009-07-29 | Use the new statement/expression profiling code to unique dependent | Douglas Gregor |
2009-07-29 | Code refactoring to define getCXXRecordDeclForPointerType | Fariborz Jahanian |
2009-07-28 | Reimplement QualifierSet using a single word, as requested by dgregor. | John McCall |
2009-07-25 | Add noreturn as a type attribute, handle printing for them and handle | Mike Stump |
2009-07-23 | This patch fixes the implementations of the __has_trivial_destructor | Douglas Gregor |
2009-07-23 | Clean up the ActOnTag action, so that there is only a single entry | Douglas Gregor |
2009-07-22 | Fix <rdar://problem/6770276> Support Class<Proto> syntax. | Steve Naroff |
2009-07-18 | Re-enable 'test/SemaTemplate/temp_class_spec_neg.cpp', after commenting out t... | Argyrios Kyrtzidis |
2009-07-18 | Fix typo from r76321. | Steve Naroff |
2009-07-18 | Remove ObjCQualifiedInterfaceType:-) | Steve Naroff |
2009-07-17 | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek |
2009-07-17 | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek |
2009-07-17 | Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). | Ted Kremenek |
2009-07-16 | Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. | Ted Kremenek |
2009-07-15 | Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseu... | Steve Naroff |
2009-07-14 | Basic support for C++0x unicode types. Support for literals will follow in a... | Alisdair Meredith |
2009-07-11 | Implement more of C++0x 'auto'. A variable with an auto type specifier must h... | Anders Carlsson |
2009-07-10 | This patch includes a conceptually simple, but very intrusive/pervasive change. | Steve Naroff |
2009-07-10 | Fix a problem that Eli noticed, and that Doug helped me fix. | Anders Carlsson |
2009-07-09 | Fix another decltype crash. | Anders Carlsson |
2009-07-08 | The canonical type of typeof or decltype with a dependent type is itself, | Douglas Gregor |
2009-07-06 | Keep track of the Expr used to describe the size of an array type, | Douglas Gregor |
2009-07-01 | Rework Sema::CheckConditionalOperands(). No functionality change. | Steve Naroff |
2009-06-30 | Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. | Chris Lattner |
2009-06-26 | An auto variable can't appear in its own initializer. | Anders Carlsson |
2009-06-25 | Extra asserts never hurt anybody, right? | Anders Carlsson |
2009-06-24 | Type::getDesugaredType needs to handle decltype types. | Anders Carlsson |
2009-06-24 | Add a DecltypeType type. | Anders Carlsson |
2009-06-18 | Some cleanups suggested by Chris | Douglas Gregor |
2009-06-17 | First step toward fixing <rdar://problem/6613046> refactor clang objc type re... | Steve Naroff |
2009-06-17 | Support dependent extended vector types and template instantiation | Douglas Gregor |
2009-06-15 | Add a new 'Pack' argument kind to TemplateArgument. This is not yet used. | Anders Carlsson |
2009-06-04 | Eliminate a warning | Douglas Gregor |
2009-06-04 | Template argument deduction for references | Douglas Gregor |
2009-06-03 | Use "()" instead of "(void)" when pretty-printing a parameter-less function t... | Argyrios Kyrtzidis |
2009-05-30 | Expose an API to print a group of decls (like "int a,b;"). | Eli Friedman |
2009-05-30 | Fix some test failures involving -ast-print. | Eli Friedman |
2009-05-30 | Add support for PrintingPolicy::SuppressTypeSpecifiers to type printing. | Eli Friedman |
2009-05-29 | Create a new PrintingPolicy class, which we pass down through the AST | Douglas Gregor |
2009-05-27 | Reintroduce the home for exception specs, and make Sema fill it. However, kee... | Sebastian Redl |
2009-05-27 | Convert ObjC qualified type clients over to using iterators. | Steve Naroff |
2009-05-22 | Parse typeof-specifier the same way as sizeof/alignof are parsed. | Argyrios Kyrtzidis |
2009-05-11 | Encapsulate template arguments lists in a new class, | Douglas Gregor |
2009-05-10 | Implement the semantics of the injected-class-name within a class | Douglas Gregor |
2009-05-10 | Implement C++0x nullptr. | Sebastian Redl |