| Commit message (Expand) | Author | Age | Files | Lines |
* | Pull MayDeferGeneration out of EmitGlobal. | Daniel Dunbar | 2009-02-13 | 1 | -1/+19 |
* | Add CodeGen support for the nodebug attribute. | Anders Carlsson | 2009-02-13 | 1 | -0/+12 |
* | Add mangling for variadic functions and conversion functions | Douglas Gregor | 2009-02-13 | 1 | -0/+2 |
* | Add basic support for C++ name mangling according to the Itanium C++ | Douglas Gregor | 2009-02-13 | 1 | -0/+24 |
* | Honor attribute section on static block var decls. | Daniel Dunbar | 2009-02-12 | 1 | -2/+7 |
* | Support __attribute__(section(<name>)) | Daniel Dunbar | 2009-02-12 | 1 | -1/+13 |
* | Test case for emitting va_arg as l-value; apparently I only *thought* I had c... | Daniel Dunbar | 2009-02-12 | 1 | -0/+1 |
* | finish off codegen support for sub of pointer to functions, | Chris Lattner | 2009-02-11 | 1 | -0/+7 |
* | Handle the case where EmitBlock might be called multiple times for the same b... | Anders Carlsson | 2009-02-10 | 1 | -0/+11 |
* | Enable parameter passing test for x86_64. | Daniel Dunbar | 2009-02-10 | 1 | -3/+2 |
* | Make sure to initialize local variables, even if they were ignored by | Daniel Dunbar | 2009-02-10 | 1 | -1/+14 |
* | Move previously unsupported VLA test to vla.c | Anders Carlsson | 2009-02-09 | 1 | -0/+5 |
* | Update test case; VLA's are now supported. | Daniel Dunbar | 2009-02-09 | 1 | -4/+1 |
* | Use 'compile' instead of 'codegen' when reporting error to user. | Daniel Dunbar | 2009-02-06 | 1 | -1/+1 |
* | Add bare bones test that parameter passing is consistent for | Daniel Dunbar | 2009-02-05 | 1 | -0/+45 |
* | Test case for -femit-all-decls. | Daniel Dunbar | 2009-02-04 | 1 | -0/+8 |
* | Force -triple/-fnext-runtime for a few more test cases. | Daniel Dunbar | 2009-02-03 | 1 | -1/+1 |
* | Force triple for codegen tests which have expectations on output | Daniel Dunbar | 2009-02-03 | 17 | -18/+18 |
* | Upgrade the "excess elements in array initializer" warning to an | Douglas Gregor | 2009-01-30 | 4 | -6/+0 |
* | Make sure to cast the VLA size of array to the type of size_t. Fixes PR3442. | Anders Carlsson | 2009-01-30 | 1 | -0/+13 |
* | enable test as it already works | Nuno Lopes | 2009-01-30 | 1 | -3/+2 |
* | Introduce a new expression node, ImplicitValueInitExpr, that | Douglas Gregor | 2009-01-29 | 1 | -0/+17 |
* | Evaluate ==,!= for complex types. | Daniel Dunbar | 2009-01-29 | 1 | -3/+28 |
* | Implement basic _Complex integer constant folding. | Daniel Dunbar | 2009-01-28 | 1 | -0/+3 |
* | fix PR3427: fix debuginfo for incomplete array types | Nuno Lopes | 2009-01-28 | 1 | -1/+7 |
* | If an input constraint refers to an output constraint, it should have the sam... | Anders Carlsson | 2009-01-27 | 1 | -4/+5 |
* | eliminate some random .ll file outputs | Chris Lattner | 2009-01-27 | 12 | -12/+12 |
* | Fix definition of __builtin_ia32_vec_set_v2di and de-XFAIL | Daniel Dunbar | 2009-01-26 | 1 | -5/+4 |
* | Make the constant folder aware of | Eli Friedman | 2009-01-25 | 1 | -1/+3 |
* | Fix the address of a label to be properly considered and emitted as a | Eli Friedman | 2009-01-25 | 1 | -0/+4 |
* | Fix for PR2910: implement CodeGen for non-constant offsetof. | Eli Friedman | 2009-01-24 | 1 | -0/+12 |
* | Handle pointer arithmetic on function pointers. | Daniel Dunbar | 2009-01-23 | 1 | -3/+18 |
* | Allow creation of "dummy" compile units for debug information. | Daniel Dunbar | 2009-01-22 | 1 | -0/+16 |
* | Vector codegen improvements | Nate Begeman | 2009-01-18 | 1 | -0/+15 |
* | Support evaluation of vector constant expressions, and codegen of same. | Nate Begeman | 2009-01-18 | 1 | -0/+2 |
* | A couple more vector component access fixes. | Nate Begeman | 2009-01-18 | 1 | -1/+1 |
* | add support for usage of cast to union thing with static vars | Nuno Lopes | 2009-01-17 | 1 | -4/+7 |
* | add codegen support to union casts | Nuno Lopes | 2009-01-15 | 1 | -0/+10 |
* | Bug fix, __private_extern__ globals were always introducing a definition. | Daniel Dunbar | 2009-01-13 | 1 | -0/+10 |
* | Handle multi-value inputs | Anders Carlsson | 2009-01-12 | 1 | -0/+7 |
* | More inline asm fixes | Anders Carlsson | 2009-01-11 | 1 | -3/+19 |
* | Handle readwrite constraints correctly | Anders Carlsson | 2009-01-11 | 1 | -0/+5 |
* | rename these tests to match the attribute. | Chris Lattner | 2009-01-05 | 1 | -0/+0 |
* | Remainder is only valid on integer vector operands. | Daniel Dunbar | 2009-01-05 | 1 | -4/+77 |
* | Fix the bug that would cause Python to crash at startup. | Anders Carlsson | 2009-01-04 | 1 | -0/+19 |
* | Add full dllimport / dllexport support: both sema checks and codegen. | Anton Korobeynikov | 2008-12-26 | 1 | -0/+7 |
* | Commit the right version of the test | Anders Carlsson | 2008-12-21 | 1 | -2/+2 |
* | Make sure to emit the size expression for sizeof(type) | Anders Carlsson | 2008-12-21 | 1 | -0/+5 |
* | Make VLAs usable, and make basic usage work correctly. Also, add a | Eli Friedman | 2008-12-20 | 1 | -0/+10 |
* | Add some ErrorUnsupported calls and turn on VLA codegen again. | Anders Carlsson | 2008-12-20 | 1 | -2/+2 |