Age | Commit message (Expand) | Author | Files | Lines |
2013-05-06 | Grab-bag of bit-field fixes: | John McCall | 2 | -4/+9 |
2013-05-06 | Add SystemZ support | Ulrich Weigand | 1 | -0/+76 |
2013-05-06 | Allow targets to define minimum alignment for global variables | Ulrich Weigand | 1 | -0/+16 |
2013-05-06 | Add llvm_unreachable at end of fully covered switch | Hans Wennborg | 1 | -0/+1 |
2013-05-06 | Require the containing type to be complete when we see | John McCall | 1 | -0/+4 |
2013-05-06 | C++1y: support range-based for loops in constant expressions. | Richard Smith | 1 | -0/+39 |
2013-05-06 | C++1y: support 'for', 'while', and 'do ... while' in constant expressions. | Richard Smith | 1 | -12/+101 |
2013-05-05 | C++1y: support for increment and decrement in constant expression evaluation. | Richard Smith | 1 | -28/+218 |
2013-05-05 | Factor out duplication between lvalue-to-rvalue conversions and variable | Richard Smith | 1 | -238/+244 |
2013-05-05 | Make all 'is in extern "C"' tests use the lexical context. | Rafael Espindola | 2 | -33/+40 |
2013-05-05 | Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr... | Dmitri Gribenko | 5 | -9/+7 |
2013-05-04 | Reverting r181004 since it has broken test/Sema/wchar.c. | Aaron Ballman | 2 | -4/+3 |
2013-05-04 | In VarDecl nodes, store the thread storage class specifier as written. | Enea Zaffanella | 1 | -4/+7 |
2013-05-04 | Implement most of N3638 (return type deduction for normal functions). | Richard Smith | 1 | -12/+26 |
2013-05-04 | Implement template support for CapturedStmt | Wei Pan | 1 | -4/+6 |
2013-05-04 | Added a function to check whether a Decl is in | Sean Callanan | 1 | -0/+5 |
2013-05-04 | [doc parsing]: Make warning about unknown command | Fariborz Jahanian | 1 | -3/+2 |
2013-05-03 | [Doc parsing] Provide diagnostics for unknown documentation | Fariborz Jahanian | 2 | -4/+10 |
2013-05-03 | Rename ObjCImplementationDecl::getSuperLoc() -> getSuperClassLoc() for consis... | Argyrios Kyrtzidis | 1 | -1/+1 |
2013-05-03 | Serialization for captured statements | Ben Langmuir | 2 | -3/+10 |
2013-05-03 | Move CapturedStmt parameters to CapturedDecl | Ben Langmuir | 1 | -2/+4 |
2013-05-03 | Keep track of an @implementation's super class name location, if one was prov... | Argyrios Kyrtzidis | 2 | -1/+3 |
2013-05-03 | Micro-optimization: check the overloaded operator kind before | John McCall | 1 | -2/+2 |
2013-05-03 | Support __wchar_t in -fms-extensions and -fms-compatibility modes. | Hans Wennborg | 2 | -3/+4 |
2013-05-03 | Correctly emit certain implicit references to 'self' even within | John McCall | 1 | -12/+28 |
2013-05-03 | Move parsing of identifiers in MS-style inline assembly into | John McCall | 2 | -15/+28 |
2013-05-02 | [document parsing]: support c++11 type aliases | Fariborz Jahanian | 1 | -1/+1 |
2013-05-01 | [documenting declaration]: Remove arc liftime qualifiers | Fariborz Jahanian | 1 | -8/+8 |
2013-05-01 | Fix spurious trailing comma when printing some of the __c11_atomic_* builtins... | Richard Smith | 1 | -5/+6 |
2013-05-01 | PR15884: In the 'taking the address of a temporary' extension, materialize the | Richard Smith | 1 | -8/+6 |
2013-05-01 | [ObjC declaration documentation] declaration of | Fariborz Jahanian | 1 | -8/+15 |
2013-04-30 | Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there | Richard Smith | 3 | -6/+23 |
2013-04-26 | documenttion parsing. Provide a c-index test | Fariborz Jahanian | 1 | -1/+3 |
2013-04-26 | In the ASTImporter, when checking whether two | Sean Callanan | 1 | -0/+6 |
2013-04-26 | Move helper classes into anonymous namespaces. | Benjamin Kramer | 1 | -0/+2 |
2013-04-26 | document parsing. When a sub-class (c++ Objective-C) missing | Fariborz Jahanian | 1 | -0/+45 |
2013-04-26 | Comment parsing: -fparse-all-comments: recognize empty line comments | Dmitri Gribenko | 1 | -3/+5 |
2013-04-26 | Implement C++1y decltype(auto). | Richard Smith | 4 | -8/+10 |
2013-04-26 | C++1y: support simple variable assignments in constexpr functions. | Richard Smith | 1 | -96/+376 |
2013-04-26 | Add r180263 back, but fix hasBraces() to be correct during parsing. | Rafael Espindola | 2 | -9/+14 |
2013-04-25 | Revert r180263. It's causing failures. | Bill Wendling | 1 | -11/+6 |
2013-04-25 | Objective-C: This is a small modification to my | Fariborz Jahanian | 1 | -15/+18 |
2013-04-25 | Fix a case in linkage computation that should check for single line extern "C". | Rafael Espindola | 1 | -6/+11 |
2013-04-25 | Don't mark 'extern "C" void f(void)' as having extern storage class. | Rafael Espindola | 1 | -7/+10 |
2013-04-25 | [ms-cxxabi] Fix a number of bugs in the mangler. | Peter Collingbourne | 1 | -91/+98 |
2013-04-24 | Objective-C: When reporting on missing property accessor implementation in | Fariborz Jahanian | 1 | -15/+17 |
2013-04-22 | C++1y constexpr extensions, round 1: Allow most forms of declaration and | Richard Smith | 4 | -23/+113 |
2013-04-22 | Fix array constant expression evaluation bug: we can have different values for | Richard Smith | 1 | -36/+62 |
2013-04-20 | C++1y: Allow aggregates to have default initializers. | Richard Smith | 9 | -9/+94 |
2013-04-19 | Implement CodeGen for C++11 thread_local, following the Itanium ABI specifica... | Richard Smith | 1 | -0/+18 |