| Commit message (Expand) | Author | Age | Files | Lines |
| * | local static vars are globals also. This fixes a testcase | Chris Lattner | 2007-12-18 | 1 | -5/+7 |
| * | introduce a new CodeGenModule::getIntrinsic method, which wraps | Chris Lattner | 2007-12-18 | 1 | -1/+7 |
| * | add a hack so that codegen doesn't abort on missing sema of initializers, now | Chris Lattner | 2007-12-17 | 1 | -1/+15 |
| * | Update to use new PointerType::getUnqual() api. | Christopher Lamb | 2007-12-17 | 1 | -2/+2 |
| * | builtin id 0 is invalid, don't use a slot for it. | Chris Lattner | 2007-12-13 | 1 | -4/+6 |
| * | fix off-by-one error. | Chris Lattner | 2007-12-12 | 1 | -1/+1 |
| * | TargetInfo no longer includes a reference to SourceManager. | Ted Kremenek | 2007-12-12 | 1 | -2/+2 |
| * | Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now | Ted Kremenek | 2007-12-11 | 1 | -1/+2 |
| * | Reimplement support for strings that initialize global inits now that | Chris Lattner | 2007-12-11 | 1 | -34/+26 |
| * | add support for implicit cast from array to pointer that is not the element | Chris Lattner | 2007-12-10 | 1 | -1/+8 |
| * | abort when we lower an initializer to the wrong type, as we currently do for: | Chris Lattner | 2007-12-10 | 1 | -2/+2 |
| * | extend or truncate the initializer for a string initializer to match its type. | Chris Lattner | 2007-12-10 | 1 | -6/+15 |
| * | Implement codegen support for: | Chris Lattner | 2007-12-09 | 1 | -0/+21 |
| * | implement support for functions that initialize globals. | Chris Lattner | 2007-12-09 | 1 | -6/+13 |
| * | Treat discarding array initializer elements as an extwarn (so -pedantic-error... | Christopher Lamb | 2007-12-02 | 1 | -8/+20 |
| * | globals can't be vla's | Chris Lattner | 2007-12-02 | 1 | -4/+2 |
| * | add codegen support for global inits that require array decay. | Chris Lattner | 2007-12-02 | 1 | -0/+21 |
| * | warn about unhandled initializers instead of crashing on them. | Chris Lattner | 2007-12-02 | 1 | -24/+32 |
| * | Handle global variable definitions which change the type of a definition, suc... | Chris Lattner | 2007-12-02 | 1 | -28/+112 |
| * | merge the llvm global variable when there are multiple C decls. | Chris Lattner | 2007-12-02 | 1 | -3/+10 |
| * | implement codegen for functions whose function body type don't match | Chris Lattner | 2007-12-02 | 1 | -0/+12 |
| * | merge functions with multiple function decls if they have the same name. | Chris Lattner | 2007-12-02 | 1 | -0/+7 |
| * | Warn about unsupported codegen with the diags machinery, giving us: | Chris Lattner | 2007-12-02 | 1 | -2/+3 |
| * | Support initalisers for more than just int-typed static variables. | Oliver Hunt | 2007-12-02 | 1 | -4/+3 |
| * | Implement support for -fwritable-strings and make the code generator | Chris Lattner | 2007-11-28 | 1 | -25/+44 |
| * | improve codegen for global variable initializers, implementing | Chris Lattner | 2007-11-23 | 1 | -27/+227 |
| * | Put constant CFStrings in the __DATA,__cfstring section. | Anders Carlsson | 2007-11-01 | 1 | -6/+7 |
| * | Take 2. | Devang Patel | 2007-10-31 | 1 | -3/+4 |
| * | Initialize MemCpyFn | Devang Patel | 2007-10-31 | 1 | -1/+2 |
| * | temporarily revert devang's patch to link in the llvm codegen etc. | Chris Lattner | 2007-10-31 | 1 | -4/+2 |
| * | Make target info available to clang code generator. | Devang Patel | 2007-10-31 | 1 | -2/+4 |
| * | Refactor code into a separate method. | Devang Patel | 2007-10-30 | 1 | -38/+45 |
| * | Fix 80 col violations. | Devang Patel | 2007-10-30 | 1 | -4/+8 |
| * | Codegen global array initializers. | Devang Patel | 2007-10-26 | 1 | -1/+35 |
| * | Updated VC++ build system. | Hartmut Kaiser | 2007-10-17 | 1 | -1/+1 |
| * | Phase 2 of making the Decl class more lightweight... | Steve Naroff | 2007-09-13 | 1 | -1/+1 |
| * | eliminate some VC++ warnings, patch contributed by Hartmut Kaiser | Chris Lattner | 2007-09-04 | 1 | -2/+2 |
| * | Implement codegen support for lowering "library builtins" like __builtin_isinf | Chris Lattner | 2007-08-31 | 1 | -1/+5 |
| * | add the ability to get the llvm function corresponding to a library builtin. | Chris Lattner | 2007-08-31 | 1 | -4/+38 |
| * | Implement code generation for constant CFStrings. | Anders Carlsson | 2007-08-21 | 1 | -1/+57 |
| * | Add preliminary support for converting struct types. | Anders Carlsson | 2007-08-17 | 1 | -1/+1 |
| * | Refactor code so that isIntegerConstantExpr has an ASTContext available. | Chris Lattner | 2007-07-15 | 1 | -1/+1 |
| * | A significant refactoring of the type size stuff to also | Chris Lattner | 2007-07-14 | 1 | -3/+6 |
| * | Implement trivial integer initializers, like 'int X = 4;' for global | Chris Lattner | 2007-07-14 | 1 | -5/+10 |
| * | In "int X,Y;", compile both X and Y. | Chris Lattner | 2007-07-14 | 1 | -0/+6 |
| * | implement support for basic codegen of global variables with no initializers. | Chris Lattner | 2007-07-13 | 1 | -1/+34 |
| * | remove location tracking for target info | Chris Lattner | 2007-06-22 | 1 | -1/+1 |
| * | Build enough support for aggregates to be able to compile this: | Chris Lattner | 2007-06-22 | 1 | -0/+15 |
| * | Hook up global function and variable handling. We can now compile: | Chris Lattner | 2007-06-20 | 1 | -0/+24 |
| * | Refactor CodeGenTypes out to CodeGenModule so it can be used for functions | Chris Lattner | 2007-06-16 | 1 | -0/+4 |