1. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  2. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  3. d7d5f02 Rename clang to clang-cc. by Daniel Dunbar · 15 years ago
  4. 4dc346e Test case for emitting va_arg as l-value; apparently I only *thought* I had committed this. by Daniel Dunbar · 15 years ago
  5. 292d4f9 Force -triple/-fnext-runtime for a few more test cases. by Daniel Dunbar · 16 years ago
  6. c8e9cd6 eliminate some random .ll file outputs by Chris Lattner · 16 years ago
  7. 80e62c2 Implement codegen of aggregates as lvalues in binary expressions, by Daniel Dunbar · 16 years ago
  8. 2d6ca8d Update a number of CodeGen tests to not create .ll files in the test by Daniel Dunbar · 16 years ago
  9. 0408f68 Always use packed structs. This isn't really very nice, but there's by Eli Friedman · 16 years ago
  10. 2fb86e6 Check first member alignment and uses packed struct if required. by Devang Patel · 16 years ago
  11. bf20b68 Fix test case by Devang Patel · 16 years ago
  12. b185124 A few more cases for aggregate values. by Eli Friedman · 16 years ago
  13. 75afb58 Fix the codegen of structs with flexible array members. by Eli Friedman · 17 years ago
  14. eae1560 Cleanup InitListExpr code generation code. by Devang Patel · 17 years ago
  15. 47fb697 Handle incomplete struct initializer. by Devang Patel · 17 years ago
  16. a46b759 Assert that the type of the cast is equal to the _unqualified_ type of the subexpression. Fixes a problem spotted by Nuno Lopes. by Anders Carlsson · 17 years ago
  17. e4707ff Add codegen upport for implicit casts to aggregate exprs. by Anders Carlsson · 17 years ago
  18. 9b73b39 Array subscription in aggregate expression by Seo Sanghyeon · 17 years ago
  19. 7777bb2 Implement dereference operator in aggregate expression by Seo Sanghyeon · 17 years ago
  20. 14c7500 Use getABITypeSizeInBits() instead of getTypeSizeInBits() during struct layout. by Devang Patel · 17 years ago
  21. a1ff3e9 Generate code for member exprs. by Anders Carlsson · 17 years ago
  22. 148fe67 Handle function calls that return aggregate expressions. by Anders Carlsson · 17 years ago
  23. 0a96118 Handle non LValue base expressions. by Devang Patel · 17 years ago
  24. 126a856 Handle foo()->a = 42; by Devang Patel · 17 years ago
  25. dbb46b1 Fix typo. by Devang Patel · 17 years ago
  26. b1e3989 Handle nested structs. typdef struct A { int i; struct A *next; } A by Devang Patel · 17 years ago
  27. b9b00ad Handle simple struct member expr. by Devang Patel · 17 years ago