1. 2b9d2ca local static vars are globals also. This fixes a testcase reported by Seo. by Chris Lattner · 17 years ago
  2. ddc23f3 Update to use new PointerType::getUnqual() api. by Christopher Lamb · 17 years ago
  3. fe2419a Match union field type when member expression is u->x by Devang Patel · 17 years ago
  4. 9418d31 Add assert to flag incomplete bit-field support. by Devang Patel · 17 years ago
  5. 12f65f6 fix logic for member expr codegen. by Chris Lattner · 17 years ago
  6. 9cd4fe4 Handle global variable definitions which change the type of a definition, such as: 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. 3e47be5 fix a bug handling typedefs in member expr codegen. Patch by Seo Sanghyeon by Chris Lattner · 17 years ago
  9. 2202bce Fix a codegen crash on void ?: reported by Oliver by Chris Lattner · 17 years ago
  10. 45e8cbd Implement support for -fwritable-strings and make the code generator by Chris Lattner · 17 years ago
  11. 7da36f6 __real__ and __imag__ can be lvalues. Add support to ast and codegen for them. by Chris Lattner · 17 years ago
  12. e9b8c0a Fix 80 col violations. by Devang Patel · 17 years ago
  13. abad06c Codegen union member references. by Devang Patel · 17 years ago
  14. 0a96118 Handle non LValue base expressions. by Devang Patel · 17 years ago
  15. 126a856 Handle foo()->a = 42; by Devang Patel · 17 years ago
  16. 0e63f6b check base type. by Devang Patel · 17 years ago
  17. 977f14e Use isUnionType() predicate. by Devang Patel · 17 years ago
  18. 655bf3d untabify by Devang Patel · 17 years ago
  19. b9b00ad Handle simple struct member expr. by Devang Patel · 17 years ago
  20. c7229c3 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  21. b1776cb fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
  22. 8e74c93 by Steve Naroff · 17 years ago
  23. 419ea7e When dumping out errors about unsupported stuff, emit loc info. by Chris Lattner · 17 years ago
  24. 9b65551 Generalize RValue to handle complex better, generalize EmitCompoundStmt to by Chris Lattner · 17 years ago
  25. c5e940f Implement codegen support for lowering "library builtins" like __builtin_isinf by Chris Lattner · 17 years ago
  26. 1d40060 remove some ugly code now that implicit defs are being generated in this case, thanks Steve! by Chris Lattner · 17 years ago
  27. d8d1936 remove dead code by Chris Lattner · 17 years ago
  28. 1e4d21e eliminate EmitAnyExpr, inlining it and simplifying it into its only caller. by Chris Lattner · 17 years ago
  29. 660ac12 eliminate use of EmitAnyExpr. by Chris Lattner · 17 years ago
  30. 9069fa2 remove ConvertScalarValueToBool. by Chris Lattner · 17 years ago
  31. 190dbe2 be slightly more volatile correct by Chris Lattner · 17 years ago
  32. 10b00cf Omit EmitConversion by Chris Lattner · 17 years ago
  33. abe6719 implicit casts take care of this code, remove it now. by Chris Lattner · 17 years ago
  34. 3707b25 refactor scalar conversions out into CGExprScalar.cpp by Chris Lattner · 17 years ago
  35. 7013c8c tolerate unimplemented codegen better by Chris Lattner · 17 years ago
  36. 1f1ded9 Teach emit-llvm for scalars to properly handle compound assignment by Chris Lattner · 17 years ago
  37. 7f02f72 completely refactor codegen of scalar expressions out into its own CGExprScalar.cpp file. by Chris Lattner · 17 years ago
  38. 4f5d414 stub out complex -> bool conversion. by Chris Lattner · 17 years ago
  39. 23b1cdb implement passing of complex and aggregates through call args. by Chris Lattner · 17 years ago
  40. 5508518 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  41. 46d7d9f move EmitLoadOfComplex/EmitStoreOfComplex into ComplexExprEmitter. by Chris Lattner · 17 years ago
  42. 756a4d8 implement comma for complex. by Chris Lattner · 17 years ago
  43. 4034edb and/or/xor are invalid for complex, even integer complex apparently. by Chris Lattner · 17 years ago
  44. 32e32e7 simplify code slightly by Chris Lattner · 17 years ago
  45. 58dee10 reimplement support for complex comparisons, add support for integer complex compares. by Chris Lattner · 17 years ago
  46. 2823c19 reimplement complex mul by Chris Lattner · 17 years ago
  47. ee755f9 reimplement addition of complex numbers. by Chris Lattner · 17 years ago
  48. 7016a70 Fix array->pointer decay. This unbreaks test/CodeGen/array.c by Chris Lattner · 17 years ago
  49. 022012e Add support for code generation of builtins. by Anders Carlsson · 17 years ago
  50. 2324512 Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition by Ted Kremenek · 17 years ago
  51. 883f6a7 start splitting out aggregate value computation from EmitExpr into EmitAggExpr. by Chris Lattner · 17 years ago
  52. cf60cd2 fix a codegen bug handling ocuvector element exprs. by Chris Lattner · 17 years ago
  53. cc666af implement initial codegen for aggregate return functions. This implements by Chris Lattner · 17 years ago
  54. 461766a Fix a bug handling function -> pointer decay and avoid emitting a noop bitcast. by Chris Lattner · 17 years ago
  55. 6c21616 now that implicit conversions are explicit, we can eliminate by Chris Lattner · 17 years ago
  56. d4f0802 now that implicit conversions are explicit, we can eliminate by Chris Lattner · 17 years ago
  57. 94f05e3 Implement codegen for __builtin_choose_expr. For example: by Chris Lattner · 17 years ago
  58. 30bf3ae implement codegen support for __builtin_types_compatible_p by Chris Lattner · 17 years ago
  59. 6481a57 Rename AddrLabel and OCUVectorComponent -> AddrLabelExpr and OCUVectorElementExpr respectively. This is for consistency with other expr nodes end with *Expr. by Chris Lattner · 17 years ago
  60. 7e6b51b implement codegen for multidest ocuvector expressions, like: by Chris Lattner · 17 years ago
  61. 017d6aa add codegen support for storing into a single-element ocu lvalue, such as: by Chris Lattner · 17 years ago
  62. 34cdc86 refactor handling of ocuvector lvalue->rvalue codegen into its own method. by Chris Lattner · 17 years ago
  63. 5cc2e45 In the common case where we are shuffling a vector, emit an by Chris Lattner · 17 years ago
  64. 3b12612 Add support for scalar-returning element accesses like V.x by Chris Lattner · 17 years ago
  65. 46ea8eb implement lvalue to rvalue conversion for ocuvector components. We can now compile stuff by Chris Lattner · 17 years ago
  66. 349aaec add support for codegen of an OCUVectorComponent as an lvalue. by Chris Lattner · 17 years ago
  67. bf98651 update this to build with LLVM ToT by Chris Lattner · 17 years ago
  68. 2274266 Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ by Anders Carlsson · 17 years ago
  69. 5e3fbe5 implement codegen support for sizeof/alignof by Chris Lattner · 17 years ago
  70. 99e0d79 Add a hack (mirroring llvm-gcc) to pointer difference codegen to compile: by Chris Lattner · 17 years ago
  71. 590b664 Refactor code so that isIntegerConstantExpr has an ASTContext available. by Chris Lattner · 17 years ago
  72. d5e0d98 add FIXME and un-XFAIL test by Gabor Greif · 17 years ago
  73. d2d2a11 A significant refactoring of the type size stuff to also by Chris Lattner · 17 years ago
  74. 06c8d96 add a fixme by Chris Lattner · 17 years ago
  75. 4db18f2 implement _Complex * == and != by Gabor Greif · 17 years ago
  76. a7674d8 Move getSize() out of type, into ASTContext, where it has target info, and by Chris Lattner · 17 years ago
  77. d07eb3b implement codegen support for implicit casts. by Chris Lattner · 17 years ago
  78. b0a721a "Codegen for Character Literals and Conditional Operator by Chris Lattner · 17 years ago
  79. fa7c645 "Someone typed "PtrToInt" where they meant "IntToPtr". by Chris Lattner · 17 years ago
  80. 8b9023b Implement codegen for + and - with pointers. Patch contributed by Keith Bauer. by Chris Lattner · 17 years ago
  81. 5727479 implement codegen support for pre/post inc/dec. by Chris Lattner · 17 years ago
  82. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago