1. 2c8569d warn about unhandled initializers instead of crashing on them. by Chris Lattner · 17 years ago
  2. 9cd4fe4 Handle global variable definitions which change the type of a definition, such as: by Chris Lattner · 17 years ago
  3. 5a2fa14 remove the alloca insertion point inst, which is an internal helper. by Chris Lattner · 17 years ago
  4. fafad83 merge the llvm global variable when there are multiple C decls. by Chris Lattner · 17 years ago
  5. 58c3f9e implement codegen for functions whose function body type don't match by Chris Lattner · 17 years ago
  6. 028380e merge functions with multiple function decls if they have the same name. by Chris Lattner · 17 years ago
  7. dc4d280 convert the rest of the stderr users in codegen to use diagnostics. by Chris Lattner · 17 years ago
  8. dc5e826 move unsupported warning into a centralized place. by Chris Lattner · 17 years ago
  9. fb97b03 Warn about unsupported codegen with the diags machinery, giving us: by Chris Lattner · 17 years ago
  10. 6f0768b Add support for __builtin_expect which is needed for assert, by Oliver Hunt · 17 years ago
  11. 2824723 Support initalisers for more than just int-typed static variables. by Oliver Hunt · 17 years ago
  12. c4de6a2 Better match llvm-gcc's behavior for CodeGen naming of anonymous structs and unions. by Christopher Lamb · 17 years ago
  13. 0f8db70 When generating the CodeGen type name of a struct, union, enum use the typedef by Christopher Lamb · 17 years ago
  14. 1438b49 fix a couple switch codegen problems Oliver reported. by Chris Lattner · 17 years ago
  15. 3e47be5 fix a bug handling typedefs in member expr codegen. Patch by Seo Sanghyeon by Chris Lattner · 17 years ago
  16. 2202bce Fix a codegen crash on void ?: reported by Oliver by Chris Lattner · 17 years ago
  17. c69a581 Support fully general case expressions, patch by Sanghyeon Seo! by Chris Lattner · 17 years ago
  18. 45e8cbd Implement support for -fwritable-strings and make the code generator by Chris Lattner · 17 years ago
  19. 4ef9be7 update to match change in mainline llvm. by Chris Lattner · 17 years ago
  20. 5c6a42a take an initial stab at setting function linkage right. Handle by Chris Lattner · 17 years ago
  21. a21ddb3 Fix sema support for the gnu ?: expression with a by Chris Lattner · 17 years ago
  22. 75cf288 improve codegen for global variable initializers, implementing by Chris Lattner · 17 years ago
  23. c2251dc Add __builtin_abs by Anders Carlsson · 17 years ago
  24. e7579b5 Implement codegen of CXX Bool by Nate Begeman · 17 years ago
  25. a36c486 Clean up types, removing some casts. Patch contributed by Cedric Venet. by Chris Lattner · 17 years ago
  26. 9b591f6 Add assert for the case that is not handled. struct { char a; short b:2; }; by Devang Patel · 17 years ago
  27. b93f03a Keep track of beginning offset for the bit field that does not start at byte boundry. by Devang Patel · 17 years ago
  28. b70a88e Stay within 80 columns. by Devang Patel · 17 years ago
  29. 159e330 Start struct bit field laout work. This is far from complete. by Devang Patel · 17 years ago
  30. a1ff3e9 Generate code for member exprs. by Anders Carlsson · 17 years ago
  31. 88a981b Rename classes and collections that maintain record layout information. by Devang Patel · 17 years ago
  32. 0c67829 Put constant CFStrings in the __DATA,__cfstring section. by Anders Carlsson · 17 years ago
  33. d6a275f Stub out codegen for __builtin_constant_p. Remove any implicit cast exprs in the call to __builtin___CFStringMakeConstantString. by Anders Carlsson · 17 years ago
  34. c2527d1 Remove unnecessary method. by Devang Patel · 17 years ago
  35. f9fef92 start adding pading fields. by Devang Patel · 17 years ago
  36. 50b5a30 Fix a typo that prevented pointer-to-int conversions from working. by Anders Carlsson · 17 years ago
  37. 0bd41f2 Refactor code into a separate method. by Devang Patel · 17 years ago
  38. 148fe67 Handle function calls that return aggregate expressions. by Anders Carlsson · 17 years ago
  39. 9e124d9 Check whether next slot meets field type's alignment requirements. by Devang Patel · 17 years ago
  40. d9e9ede Keep track of field offsets during structure layout. Take 2. by Devang Patel · 17 years ago
  41. 7a4718e Take 2. by Devang Patel · 17 years ago
  42. 61bb9ca Initialize MemCpyFn by Devang Patel · 17 years ago
  43. e03cd7b temporarily revert devang's patch to link in the llvm codegen etc. by Chris Lattner · 17 years ago
  44. 8967e9e Keep track of field offsets during structure layout. by Devang Patel · 17 years ago
  45. f767e21 Make target info available to clang code generator. by Devang Patel · 17 years ago
  46. 47c87b4 Avoid unnecessary PATypeHolder copy. by Devang Patel · 17 years ago
  47. 7da36f6 __real__ and __imag__ can be lvalues. Add support to ast and codegen for them. by Chris Lattner · 17 years ago
  48. 9e32d4b Refactor code into a separate method. by Devang Patel · 17 years ago
  49. e9b8c0a Fix 80 col violations. by Devang Patel · 17 years ago
  50. 0ffe89a Use by Devang Patel · 17 years ago
  51. 03f7c03 Remove commented out line. by Devang Patel · 17 years ago
  52. 86522b9 Add RecordOrganizer::layoutUnionFields() by Devang Patel · 17 years ago
  53. 6cb812e Insetead of assert() just emit an error message for by Devang Patel · 17 years ago
  54. 85f9bce Add (partial) support for @encode. by Anders Carlsson · 17 years ago
  55. 89799cf Generate code for __builtin_classify_type. by Anders Carlsson · 17 years ago
  56. abad06c Codegen union member references. by Devang Patel · 17 years ago
  57. 0a96118 Handle non LValue base expressions. by Devang Patel · 17 years ago
  58. e40daa4 by Devang Patel · 17 years ago
  59. 636c3d0 Codegen array initializers. by Devang Patel · 17 years ago
  60. 8e53e72 Codegen global array initializers. by Devang Patel · 17 years ago
  61. f86206f Fix "strbuf += stufflen;" crash. by Devang Patel · 17 years ago
  62. 5825ac2 Document ConvertNewType() method and make it a private method. by Devang Patel · 17 years ago
  63. 30ec997 Cache llvm::Type through PATypeHolder. by Devang Patel · 17 years ago
  64. 27437ca Add a new ChooseExpr::isConditionTrue method to unify some code. by Chris Lattner · 17 years ago
  65. c5d3d72 Remove unused #includes by Devang Patel · 17 years ago
  66. 126a856 Handle foo()->a = 42; by Devang Patel · 17 years ago
  67. 057afdd Move RecordOrganizer into CodeGenTypes.cpp by Devang Patel · 17 years ago
  68. a83cc33 Handle non-constant initializers. by Devang Patel · 17 years ago
  69. 35634f5 Visit CompoundLiteralExpr and InitListExpr by Devang Patel · 17 years ago
  70. c4c429a by Devang Patel · 17 years ago
  71. 0e63f6b check base type. by Devang Patel · 17 years ago
  72. 71bcb09 Add notes. by Devang Patel · 17 years ago
  73. 977f14e Use isUnionType() predicate. by Devang Patel · 17 years ago
  74. 655bf3d untabify by Devang Patel · 17 years ago
  75. 21fdf41 Fixed a strange construct, please review. by Hartmut Kaiser · 17 years ago
  76. b1e3989 Handle nested structs. typdef struct A { int i; struct A *next; } A by Devang Patel · 17 years ago
  77. b9b00ad Handle simple struct member expr. by Devang Patel · 17 years ago
  78. b84a06e Begin struct layout work. by Devang Patel · 17 years ago
  79. 7b66000 Updated VC++ build system. by Hartmut Kaiser · 17 years ago
  80. 1a86b33 Generate code for static variables that don't have initializers. Also, report an error if a static initializer is not constant. by Anders Carlsson · 17 years ago
  81. ec0550f by Steve Naroff · 17 years ago
  82. 7c50aca Add code generation and sema checking for __builtin_va_arg. by Anders Carlsson · 17 years ago
  83. 23af9f2 Fix an incorrect assertion. by Anders Carlsson · 17 years ago
  84. 793680e Generate code for va_start and va_end. by Anders Carlsson · 17 years ago
  85. 2c30d8f Recognize while(1) and avoid extra blocks. by Devang Patel · 17 years ago
  86. 05f6e6b Recognize "do {} while (0)" idiom and avoid extra basic blocks. by Devang Patel · 17 years ago
  87. 50c9034 Use LLVMFoldingBuilder by Devang Patel · 17 years ago
  88. 00ee4e4 Use const& for RHS. by Devang Patel · 17 years ago
  89. 80fd5f9 Fix comment. Describe what it is, instead of how it is used. by Devang Patel · 17 years ago
  90. e37882a Added a new class for Interfaces qualified by protocol list. by Fariborz Jahanian · 17 years ago
  91. aa9fc46 Rename FileVariable -> FileVar for consistency with its class name, by Chris Lattner · 17 years ago
  92. c049e4f Code gen case statement ranges. by Devang Patel · 17 years ago
  93. c7229c3 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  94. 2d79d0f Support case statement ranges. by Devang Patel · 17 years ago
  95. 51b09f2 switch statement code gen. by Devang Patel · 17 years ago
  96. d9363c3 Do not codegen dummy block. Dummy block is an empty block with no predecessors. by Devang Patel · 17 years ago
  97. c9bec4b further apfloat'ize the front-end, allowing codegen to pass by Chris Lattner · 17 years ago
  98. b1776cb fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
  99. 9474504 by Steve Naroff · 17 years ago
  100. 8e74c93 by Steve Naroff · 17 years ago