1. 3ea9e33 Update aosp/master clang for rebase to r233350 by Pirama Arumuga Nainar · 9 years ago
  2. 0e2c34f Update aosp/master clang for rebase to r230699. by Stephen Hines · 10 years ago
  3. 176edba Update aosp/master Clang for rebase to r222490. by Stephen Hines · 10 years ago
  4. c568f1e Update Clang for rebase to r212749. by Stephen Hines · 10 years ago
  5. 6bcf27b Update Clang for 3.5 rebase (r209713). by Stephen Hines · 10 years ago
  6. 93ab6bf CHECK-LABEL-ify some code gen tests to improve diagnostic experience when tests fail. by Stephen Lin · 11 years ago
  7. 17dfe3f Testcase for PR14130, which was probably fixed by r183859. by Richard Smith · 11 years ago
  8. d6b6987 PR16263: Implement current direction of core issue 1376. Binding a reference to by Richard Smith · 11 years ago
  9. 8a07cd3 Reapply r183721, reverted in r183776, with a fix for a bug in the former (we by Richard Smith · 11 years ago
  10. a57be56 Revert r183721. It caused cleanups to be delayed too long in some cases. by Richard Smith · 11 years ago
  11. 85af7ce Rework IR emission for lifetime-extended temporaries. Instead of trying to walk by Richard Smith · 11 years ago
  12. 34f94f9 Remove some unreachable (and wrong) code and replace it with an assertion. by Richard Smith · 11 years ago
  13. 75ddd14 Convert some Unicode whitespace to ASCII whitespace. by Richard Smith · 11 years ago
  14. d1b55dc Do not walk through member-accesses on bitfields when looking for the object by Richard Smith · 11 years ago
  15. 4e43dec Fix handling of pointers-to-members and comma expressions when by Richard Smith · 11 years ago
  16. 5e31474 Update the tests. by Bill Wendling · 12 years ago
  17. f0f7fa0 Modify the tests for the (sorted) order that the attributes come out as now. by Bill Wendling · 12 years ago
  18. 044c8aa Fix some wrong-code bugs in implicitly-defined assignment operators: by Richard Smith · 12 years ago
  19. bceb755 In Sema::MaybeBindToTemporary, create a CXXBindTemporaryExpr for an by Peter Collingbourne · 13 years ago
  20. 410ffb2 Track whether an AggValueSlot is potentially aliased, and do not by John McCall · 13 years ago
  21. bdc4d80 A number of array-related IR-gen cleanups. by John McCall · 13 years ago
  22. 4bbcbda Fix some obvious bugs in the conditional-cleanup code and then make the by John McCall · 14 years ago
  23. 74fb0ed Reset the lifetime-managed flag between emission of the agg conditional by John McCall · 14 years ago
  24. fc1e6c7 Fix a bug with binding l-values to elided temporaries, and leave a couple by John McCall · 14 years ago
  25. 19e60ad Right, there are *two* cases of pr-value class-type expressions that don't by John McCall · 14 years ago
  26. 465e8c1 Test hardening. by John McCall · 14 years ago
  27. 558d2ab one piece of code is responsible for the lifetime of every aggregate by John McCall · 14 years ago
  28. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago
  29. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 14 years ago
  30. 63ef464 Do not use CXXZeroValueInitExpr for class types. Instead, use by Douglas Gregor · 14 years ago
  31. 9994eed Tweak test for destruction of copied temporary objects by Douglas Gregor · 14 years ago
  32. b86cf0c When copying a temporary object to initialize an entity for which the by Douglas Gregor · 14 years ago
  33. 8682bda Fix PR6648 by not creating a temporary with the type of a by Rafael Espindola · 15 years ago
  34. 8f51a4f Give explicit template instantiations weak ODR linkage. Former by Douglas Gregor · 15 years ago
  35. 34fd284 Re-revert the explicit template instantiation linkage patch. I am beginning to look incompetent by Douglas Gregor · 15 years ago
  36. 8721360 Reinstate patch to turn explicit template instantiations into weak symbols by Douglas Gregor · 15 years ago
  37. 4ea9006 Revert the linkage change for explicit template instantiations; something is amiss by Douglas Gregor · 15 years ago
  38. e5e0c9d Give explicit template instantiations weak linkage (but don't defer by Douglas Gregor · 15 years ago
  39. 0dc7366 When binding an lvalue to a reference, we always need to pop temporaries. by Anders Carlsson · 15 years ago
  40. 2e13db8 Check in a test case and a nasty workaround for PR6199. by Anders Carlsson · 15 years ago
  41. 5132655 When transforming CXXExprWithTemporaries and CXXBindTemporaryExpr by Douglas Gregor · 15 years ago
  42. 65552c4 InitializationSequence handles binding to temporaries, so that by Douglas Gregor · 15 years ago
  43. 18ef5e2 Switch the initialization required by return statements over to the by Douglas Gregor · 15 years ago
  44. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  45. 4b3cbea Don't bind arguments to temporaries if the argument has a reference type. by Anders Carlsson · 15 years ago
  46. 03d8ed4 Fix two bugs with temporaries: by Anders Carlsson · 15 years ago
  47. 5e1b918 If a member variable of reference type is bound to a temporary in its member initializer it needs to be destroyed at the end of the constructor. by Anders Carlsson · 15 years ago
  48. 1faf674 If a member initializer create temporaries we need to destroy them. Fixes PR5077. by Anders Carlsson · 15 years ago
  49. 3114af3 Add missing colons for FileCheck. by Benjamin Kramer · 15 years ago
  50. 4fa2684 When building a cast argument, make sure to bind the result to a temporary. by Anders Carlsson · 15 years ago
  51. fa4f550 Convert temporaries.cpp to using FileCheck. by Anders Carlsson · 15 years ago
  52. 8dafd5f Rename temp-1.cpp to temporaries.cpp. by Anders Carlsson · 15 years ago[Renamed from test/CodeGenCXX/temp-1.cpp]
  53. 283e4d5 If a function call returns a reference, don't bind it to a temporary. by Anders Carlsson · 15 years ago
  54. 2d46eb2 Call MaybeBindToTemporary for overloaded binary and unary operators. by Anders Carlsson · 15 years ago
  55. a303f9e Call MaybeBindToTemporary when constructing functino call operator calls. by Anders Carlsson · 15 years ago
  56. 6f68027 Add MaybeBindToTemporary calls for member call expressions. by Anders Carlsson · 15 years ago
  57. ec74c59 Make sure to call MaybeBindToTemporary when creating CallExprs. by Anders Carlsson · 15 years ago
  58. 7a039eb Add a simple test for temporaries. by Anders Carlsson · 15 years ago