| Commit message (Expand) | Author | Age | Files | Lines |
* | Extend builtin "attribute" syntax to include a notation for | Douglas Gregor | 2009-02-14 | 1 | -1/+2 |
* | Implicitly declare certain C library functions (malloc, strcpy, memmove, | Douglas Gregor | 2009-02-13 | 1 | -0/+22 |
* | Warn about attribute used ignored on "extern int a | Daniel Dunbar | 2009-02-13 | 1 | -0/+3 |
* | If x is an invalid field decl, don't construct an expression for P->x, | Chris Lattner | 2009-02-13 | 1 | -0/+7 |
* | Sema/AST support for attribute used. Patch by Anders Johnson (with small twea... | Daniel Dunbar | 2009-02-13 | 1 | -0/+17 |
* | Start warning about unknown attributes. | Anders Carlsson | 2009-02-13 | 1 | -1/+1 |
* | Add sema support for the nodebug attribute. | Anders Carlsson | 2009-02-13 | 1 | -0/+8 |
* | Initial implementation of arbitrary fixed-width integer types. | Eli Friedman | 2009-02-13 | 1 | -0/+6 |
* | Tighten checking of the "overloadable" attribute. If any function by a | Douglas Gregor | 2009-02-13 | 1 | -2/+5 |
* | Add missing test for the "overloadable" attribute | Douglas Gregor | 2009-02-12 | 1 | -0/+37 |
* | Fix a bug with designated initializers where we were stepping out of a | Douglas Gregor | 2009-02-12 | 1 | -0/+14 |
* | Fix va_arg bug noticed by Eli, __builtin_va_arg is not an l-value | Daniel Dunbar | 2009-02-12 | 1 | -0/+8 |
* | Add test for overloading with _Complex in C | Douglas Gregor | 2009-02-12 | 1 | -0/+50 |
* | testcase for rdar://6096412 which already works. | Chris Lattner | 2009-02-11 | 1 | -0/+8 |
* | GNU allows structs with flexible array members to be placed inside | Douglas Gregor | 2009-02-10 | 2 | -7/+27 |
* | When handling "the rest" of a designated array subobject, maybe sure | Douglas Gregor | 2009-02-09 | 1 | -0/+21 |
* | Fix redundant errors for redefinitions with multiple existing definitions. | Sebastian Redl | 2009-02-08 | 1 | -2/+0 |
* | Make the test cases failing due to exact diagnostic matching XFAIL. | Sebastian Redl | 2009-02-08 | 1 | -0/+2 |
* | Fixup expected errors. | Mike Stump | 2009-02-08 | 1 | -1/+1 |
* | Improve Sema of the cleanup attribute somewhat. | Anders Carlsson | 2009-02-07 | 1 | -1/+3 |
* | Make one expected-diag directive match exactly one actual diagnostic. | Sebastian Redl | 2009-02-07 | 4 | -4/+4 |
* | Use our new snazzy stdint.h to make a testcase 64-bit portable. | Sebastian Redl | 2009-02-07 | 1 | -1/+3 |
* | Implement semantic analysis for the GNU flexible array initialization | Douglas Gregor | 2009-02-04 | 2 | -6/+43 |
* | Add support for blocks with explicit return types. | Mike Stump | 2009-02-04 | 3 | -18/+96 |
* | Note the Radar number that corresponds to PR3137 | Douglas Gregor | 2009-02-04 | 1 | -1/+1 |
* | Test for PR3137. | Eli Friedman | 2009-02-04 | 1 | -0/+10 |
* | Simplify the way in which we inject the names of tag definitions and | Douglas Gregor | 2009-02-03 | 1 | -1/+14 |
* | emit diagnostic when casting a ptr to a small int when doing static initializ... | Nuno Lopes | 2009-02-02 | 1 | -1/+2 |
* | fix TryToFixInvalidVariablyModifiedType to reject negative array sizes | Nuno Lopes | 2009-02-02 | 1 | -0/+1 |
* | Add iterators to LookupResult, allowing one to iterate over the | Douglas Gregor | 2009-02-02 | 1 | -0/+10 |
* | allow cast from array to int to be considered as constant | Nuno Lopes | 2009-02-02 | 1 | -1/+13 |
* | fix PR3459: improve compatibility with gcc when checking for constant exprs | Nuno Lopes | 2009-02-02 | 1 | -0/+10 |
* | Forgot to add this test. | Anders Carlsson | 2009-01-31 | 1 | -0/+31 |
* | Fix typo noticed by Chris. | Anders Carlsson | 2009-01-30 | 1 | -1/+1 |
* | Turn on -flax-vector-conversions by default, issue a warning whenever one is ... | Anders Carlsson | 2009-01-30 | 2 | -14/+14 |
* | Upgrade the "excess elements in array initializer" warning to an | Douglas Gregor | 2009-01-30 | 2 | -11/+11 |
* | Closed out a few radars that were addressed by designated initializers | Douglas Gregor | 2009-01-30 | 1 | -0/+16 |
* | Make CodeGen produce an error if we come across a non-constant initializer li... | Douglas Gregor | 2009-01-29 | 1 | -5/+4 |
* | Add another devilish testcase for designated initializers | Douglas Gregor | 2009-01-29 | 1 | -1/+6 |
* | Eliminate infinite looping in a wacky case with designated initializers. Simp... | Douglas Gregor | 2009-01-29 | 1 | -1/+9 |
* | Improvements to code-generation and semantic analysis of designated | Douglas Gregor | 2009-01-28 | 1 | -5/+5 |
* | Code generation support for C99 designated initializers. | Douglas Gregor | 2009-01-28 | 3 | -7/+63 |
* | Handle complex types in ASTContext::mergeTypes | Daniel Dunbar | 2009-01-28 | 1 | -0/+9 |
* | add test for PR2502, which was already fixed some time ago | Nuno Lopes | 2009-01-28 | 1 | -0/+3 |
* | If an input constraint refers to an output constraint, it should have the sam... | Anders Carlsson | 2009-01-27 | 1 | -1/+1 |
* | Fix for PR2100: merge types for variables. | Eli Friedman | 2009-01-24 | 1 | -0/+16 |
* | Correct test; sorry for any inconvenience. | Eli Friedman | 2009-01-24 | 1 | -1/+1 |
* | PR3062: statement expressions should be illegal at file scope. I don't | Eli Friedman | 2009-01-24 | 1 | -0/+2 |
* | Implement C99 6.5.3.4p1, rejecting sizeof(bitfield) | Chris Lattner | 2009-01-24 | 1 | -2/+5 |
* | Fix PR3386 by handling GCC's rules for alignof, which are substantially | Chris Lattner | 2009-01-24 | 1 | -0/+9 |