1. d86e6bc rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 17 years ago
  2. c4b23a5 Relax an assertion, fixing PR1968 by Chris Lattner · 17 years ago
  3. ebb97e9 Add experimental support for address space qualified types. Address space by Christopher Lamb · 17 years ago
  4. 4957378 fix codegen on static variables which have multiple decl nodes. These by Chris Lattner · 17 years ago
  5. 3b1d57b Factor out the constant generation into its own file. by Anders Carlsson · 17 years ago
  6. d6326c6 by Steve Naroff · 17 years ago
  7. d47d4f5 Support checking and codegen of constant vector globals by Nate Begeman · 17 years ago
  8. c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 17 years ago
  9. 19009e6 implement proper support for _Bool in memory, which is usually i8, not i1. by Chris Lattner · 17 years ago
  10. 17930d9 implement codegen support for most unary operators when by Chris Lattner · 17 years ago
  11. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  12. 2b9d2ca local static vars are globals also. This fixes a testcase reported by Seo. by Chris Lattner · 17 years ago
  13. 7acda7c introduce a new CodeGenModule::getIntrinsic method, which wraps by Chris Lattner · 17 years ago
  14. 0113edd add a hack so that codegen doesn't abort on missing sema of initializers, now by Chris Lattner · 17 years ago
  15. ddc23f3 Update to use new PointerType::getUnqual() api. by Christopher Lamb · 17 years ago
  16. 1426fec builtin id 0 is invalid, don't use a slot for it. by Chris Lattner · 17 years ago
  17. ab6c94c fix off-by-one error. by Chris Lattner · 17 years ago
  18. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
  19. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  20. df5eb71 Reimplement support for strings that initialize global inits now that by Chris Lattner · 17 years ago
  21. 4fd46bc add support for implicit cast from array to pointer that is not the element by Chris Lattner · 17 years ago
  22. f89dfb2 abort when we lower an initializer to the wrong type, as we currently do for: by Chris Lattner · 17 years ago
  23. 5ccc701 extend or truncate the initializer for a string initializer to match its type. by Chris Lattner · 17 years ago
  24. a44cf73 Implement codegen support for: char text[8] = "string"; by Chris Lattner · 17 years ago
  25. 2ea81a8 implement support for functions that initialize globals. by Chris Lattner · 17 years ago
  26. ce39faa Treat discarding array initializer elements as an extwarn (so -pedantic-errors flags it). Allow CodeGen to truncate the initializer if needed. by Christopher Lamb · 17 years ago
  27. 9a64cf7 globals can't be vla's by Chris Lattner · 17 years ago
  28. 9615bf8 add codegen support for global inits that require array decay. by Chris Lattner · 17 years ago
  29. 2c8569d warn about unhandled initializers instead of crashing on them. by Chris Lattner · 17 years ago
  30. 9cd4fe4 Handle global variable definitions which change the type of a definition, such as: by Chris Lattner · 17 years ago
  31. fafad83 merge the llvm global variable when there are multiple C decls. by Chris Lattner · 17 years ago
  32. 58c3f9e implement codegen for functions whose function body type don't match by Chris Lattner · 17 years ago
  33. 028380e merge functions with multiple function decls if they have the same name. by Chris Lattner · 17 years ago
  34. fb97b03 Warn about unsupported codegen with the diags machinery, giving us: by Chris Lattner · 17 years ago
  35. 2824723 Support initalisers for more than just int-typed static variables. by Oliver Hunt · 17 years ago
  36. 45e8cbd Implement support for -fwritable-strings and make the code generator by Chris Lattner · 17 years ago
  37. 75cf288 improve codegen for global variable initializers, implementing by Chris Lattner · 17 years ago
  38. 0c67829 Put constant CFStrings in the __DATA,__cfstring section. by Anders Carlsson · 17 years ago
  39. 7a4718e Take 2. by Devang Patel · 17 years ago
  40. 61bb9ca Initialize MemCpyFn by Devang Patel · 17 years ago
  41. e03cd7b temporarily revert devang's patch to link in the llvm codegen etc. by Chris Lattner · 17 years ago
  42. f767e21 Make target info available to clang code generator. by Devang Patel · 17 years ago
  43. 9e32d4b Refactor code into a separate method. by Devang Patel · 17 years ago
  44. e9b8c0a Fix 80 col violations. by Devang Patel · 17 years ago
  45. 8e53e72 Codegen global array initializers. by Devang Patel · 17 years ago
  46. 7b66000 Updated VC++ build system. by Hartmut Kaiser · 17 years ago
  47. 8e74c93 by Steve Naroff · 17 years ago
  48. 47f7dbf eliminate some VC++ warnings, patch contributed by Hartmut Kaiser by Chris Lattner · 17 years ago
  49. c5e940f Implement codegen support for lowering "library builtins" like __builtin_isinf by Chris Lattner · 17 years ago
  50. bef20ac add the ability to get the llvm function corresponding to a library builtin. by Chris Lattner · 17 years ago
  51. c9e2091 Implement code generation for constant CFStrings. by Anders Carlsson · 17 years ago
  52. 4e53328 Add preliminary support for converting struct types. by Anders Carlsson · 17 years ago
  53. 590b664 Refactor code so that isIntegerConstantExpr has an ASTContext available. by Chris Lattner · 17 years ago
  54. d2d2a11 A significant refactoring of the type size stuff to also by Chris Lattner · 17 years ago
  55. 8f32f71 Implement trivial integer initializers, like 'int X = 4;' for global by Chris Lattner · 17 years ago
  56. 32b266c In "int X,Y;", compile both X and Y. by Chris Lattner · 17 years ago
  57. 88a69ad implement support for basic codegen of global variables with no initializers. by Chris Lattner · 17 years ago
  58. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago