1. 777d6e5 Simplify EH control flow by observing that EH scopes form a simple by John McCall · 13 years ago
  2. e7d0020 Formatting. by John McCall · 13 years ago
  3. 03f4861 Revert bad change. (It may look equivalent, but it isn't.) by Eli Friedman · 13 years ago
  4. c55db3b Cleanup; no functionality change. by Eli Friedman · 13 years ago
  5. 0815b57 Move the creation of the record type for the state of Objective-C fast by Douglas Gregor · 13 years ago
  6. 45c4ea7 Move the construction of the RecordDecl representing the runtime by Douglas Gregor · 13 years ago
  7. 3f86ce1 Hand materialization of temporary expressions when emitting a scalar by Douglas Gregor · 13 years ago
  8. 4bd5d09 Fix typo so we don't use the wrong function for ending ObjC++ catch blocks (GNU runtimes) by David Chisnall · 13 years ago
  9. f66a3ea Avoid fallthrough-branching to an inactive cleanup even if it's by John McCall · 13 years ago
  10. 82cd2e5 Be sure to destroy the normal entry block of a cleanup that we by John McCall · 13 years ago
  11. 4b302d3 The continue label in an ARC for-in loop should not involve by John McCall · 13 years ago
  12. a5e19c6 Emit wide string literals with the appropriate alignment. by John McCall · 13 years ago
  13. bddfd87 Use the general conditional-cleanup framework instead of rolling our by John McCall · 13 years ago
  14. 194f06a Handle "homogeneous aggregates" as required by the ARM AAPCS-VFP ABI. by Bob Wilson · 13 years ago
  15. 40f9c30 When rewriting a call to a K&R function to lead to a well-prototyped by John McCall · 13 years ago
  16. e164c18 Implements alignment for long long and double types in va_arg on ARM AAPCS. by Rafael Espindola · 13 years ago
  17. cf565c5 Update for LLVM change in PassManagerBuilder. by Rafael Espindola · 13 years ago
  18. aebab72 PR10566: Make sure codegen for deleting an pointer to an incomplete type actually works. by Eli Friedman · 13 years ago
  19. 53fc1a6 Revert "Re-enable byval for ARM in clang. rdar://problem/7662569" by Bob Wilson · 13 years ago
  20. c35e69d Implement MipsABIInfo::EmitVAArg. This fix enables clang to complete compilation by Akira Hatanaka · 13 years ago
  21. 511949b Pass records with non-trivial destructors or constructors indirectly. by Akira Hatanaka · 13 years ago
  22. 3fc81d3 Fix linkage type for tentative definition of ivar offset variables (GNUstep runtime) by David Chisnall · 13 years ago
  23. da549e8 Remove some unnecessary single element array temporaries. by Jay Foad · 13 years ago
  24. 93f1322 Fix assertion failure in CodeGen where the input operand to an asm by Peter Collingbourne · 13 years ago
  25. fb72081 Fix a couple of problems with initialization and assignment to by John McCall · 13 years ago
  26. 0752403 The lock operand to an @synchronized statement is also by John McCall · 13 years ago
  27. e926523 CodeGen: rename CodeGenModule::Runtime to ObjCRuntime by Peter Collingbourne · 13 years ago
  28. 91873b7 Make CodeGen for array delete involving incomplete class work without crashing. Should fix regression on g++.dg/init/delete1.C. by Eli Friedman · 13 years ago
  29. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 13 years ago
  30. 990567c Clean up the analysis of the collection operand to ObjC by John McCall · 13 years ago
  31. 3e23d68 Disable the optimization that skips emission of complete, non-virtual by Douglas Gregor · 13 years ago
  32. 6421162 Rename getInstantiationLineNumber to getExpansionLineNumber in both by Chandler Carruth · 13 years ago
  33. 4027853 Mechanically rename SourceManager::getInstantiationLoc and by Chandler Carruth · 13 years ago
  34. 1cbac8a Shorten some expressions by using ArrayRef::slice(). by Frits van Bommel · 13 years ago
  35. 9f5bff0 fix PR10415, tidying up IR representation of module level inline asm by Chris Lattner · 13 years ago
  36. 2d3ba4f Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon Mulder! by Chris Lattner · 13 years ago
  37. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  38. d47d3b0 clean up forward declarations of raw_ostream to use the new LLVM.h by Chris Lattner · 13 years ago
  39. dc7c5ad Document the existing objc_precise_lifetime attribute. by John McCall · 13 years ago
  40. 0f6ac7c Convert IRBuilder::CreateGEP and IRBuilder::CreateInBoundsGEP to use ArrayRef. by Jay Foad · 13 years ago
  41. 01c5d1d fix PR10384: C++ allows external arrays of incomplete type as well. by Chris Lattner · 13 years ago
  42. ba3dd90 In ARC, non-atomic getters do not need to retain and autorelease by John McCall · 13 years ago
  43. db8264e Add a const overload for ObjCInterfaceDecl::all_declared_ivar_begin. by Jordy Rose · 13 years ago
  44. a5c0434 Convert ConstantExpr::getGetElementPtr and by Jay Foad · 13 years ago
  45. 77577ce Unbreak build after API change. by Benjamin Kramer · 13 years ago
  46. 8cc488f add raw_ostream and Twine to LLVM.h, eliminating a ton of llvm:: qualifications. by Chris Lattner · 13 years ago
  47. 686775d now that we have a centralized place to do so, add some using declarations for by Chris Lattner · 13 years ago
  48. b13eab9 fix rdar://9780211 - Clang crashes with an assertion failure building WKView.mm from WebKit by Chris Lattner · 13 years ago
  49. 181eeee fix a case where we're using ConvertType for a memory object. by Chris Lattner · 13 years ago
  50. cb8095f as eli points out, we're not doing memory stuff here. While ConvertType by Chris Lattner · 13 years ago
  51. 410b12e fix PR10395 - array decay can produce an interesting type when by Chris Lattner · 13 years ago
  52. 2860e30 Match createTargetMachine API change. by Evan Cheng · 13 years ago
  53. cb2a07e Simplify. by Devang Patel · 13 years ago
  54. 478b94b Check column number also. by Devang Patel · 13 years ago
  55. e9c0265 Migrate LLVM and Clang to use the new makeArrayRef(...) functions where previously explicit non-default constructors were used. by Frits van Bommel · 13 years ago
  56. dce67a7 In C99, emit an inline function when encountering an extern redeclaration. by Nick Lewycky · 13 years ago
  57. 2acc6e3 de-constify llvm::Type, patch by David Blaikie! by Chris Lattner · 13 years ago
  58. e9b5d77 Fix typo by Joerg Sonnenberger · 13 years ago
  59. 4c7d9f1 Convert CallInst and InvokeInst APIs to use ArrayRef. by Jay Foad · 13 years ago
  60. 379010a Fix the definition of AsTypeExpr. I'm still not sure this by John McCall · 13 years ago
  61. d26c071 protect some calls to ConvertType when a function info is under construction by Chris Lattner · 13 years ago
  62. 71305cc Enhance the IR type lowering code to be much smarter about recursively lowering by Chris Lattner · 13 years ago
  63. 91a5755 Create a new expression node, SubstNonTypeTemplateParmExpr, by John McCall · 13 years ago
  64. 8dd55a3 Change intrinsic getter to take an ArrayRef, now that the underlying function in LLVM does. by Benjamin Kramer · 13 years ago
  65. b8981df Reapply r134946 with fixes. Tested on Benjamin testcase and other test-suite failures. by Bruno Cardoso Lopes · 13 years ago
  66. d15608e Emit debug info for extended vectors. by Devang Patel · 13 years ago
  67. 799d34e Don't crash if defining -dealloc in a category. by John McCall · 13 years ago
  68. fbf780a Okay, that rule about zero-length arrays applies to destroying them, too. by John McCall · 13 years ago
  69. dd376ca Arrays are permitted to be zero-length in some situations. by John McCall · 13 years ago
  70. c3c0766 Convert the standard default-construction loops to use phis and by John McCall · 13 years ago
  71. 2045b2d per john's advice, speculatively lower uses of forward-declared enums to by Chris Lattner · 13 years ago
  72. 6af13f3 PR10337 reminds me that calls return values, lets handle them just by Chris Lattner · 13 years ago
  73. 8f62992 Aggressive dead code elimination. by John McCall · 13 years ago
  74. a91f666 Generalize the routine for destroying an object with static by John McCall · 13 years ago
  75. 7cfd76c Switch delete[] IR-generation over to the destroy framework, by John McCall · 13 years ago
  76. a8b20f7 When compiling ::delete for a class with a virtual destructor, call by Douglas Gregor · 13 years ago
  77. 548e478 Revert r134946 by Bruno Cardoso Lopes · 13 years ago
  78. ad346f4 Generalize Cleanup::Emit's "isForEH" parameter into a set by John McCall · 13 years ago
  79. 0d51676 Add more compiler workarounds. Should fix the build with old GCCs and MSVC. by Benjamin Kramer · 13 years ago
  80. 5bcd95e Ugh, use this compiler workaround again. by John McCall · 13 years ago
  81. 9928c48 Switch field destruction over to use the new destroyer-based API by John McCall · 13 years ago
  82. df983a8 Second attempt at de-constifying LLVM Types in FunctionType::get(), by Jay Foad · 13 years ago
  83. a98742c Work around a problem with a static helper's formulation in release by Chandler Carruth · 13 years ago
  84. 3a2b657 Fix a problem Eli ran into where we now reject incomplete arrays of by Chris Lattner · 13 years ago
  85. 811bf36 insert a bitcast in the 'expand' case of argument passing when needed. This by Chris Lattner · 13 years ago
  86. cd87d1e fix an unintended behavior change in the type system rewrite, which caused us to compile by Chris Lattner · 13 years ago
  87. 21ca1fd fix PR10335 by watching out for IR type compatibility in call argument lists. by Chris Lattner · 13 years ago
  88. 7085544 add some aggressive assertions that call arguments match up to callee by Chris Lattner · 13 years ago
  89. 75d28b5 Fix a typo! by Bruno Cardoso Lopes · 13 years ago
  90. 089d892 Do the same as r134946 for arrays. Add more testcases for avx x86_64 arg by Bruno Cardoso Lopes · 13 years ago
  91. e455f1c Revert r134888 (and related patches in other trees). It was causing by Bill Wendling · 13 years ago
  92. ccafadb Fix one x86_64 abi issue and the test to actually look for the right thing, by Bruno Cardoso Lopes · 13 years ago
  93. c4a1a84 Do full-expression cleanups in a much more sensible way that still lets by John McCall · 13 years ago
  94. 4943c15 Reapply r134754, which turns out to be working correctly and also by Bruno Cardoso Lopes · 13 years ago
  95. 2b30dcf Emit partial destruction of structs with initializer lists. by John McCall · 13 years ago
  96. ef6de3d De-constify Types in StructType::get() and TargetData::getIntPtrType(). by Jay Foad · 13 years ago
  97. 2673c68 Fix a lot of problems with the partial destruction of arrays: by John McCall · 13 years ago
  98. 00d40ea De-constify Types in FunctionType::get(). by Jay Foad · 13 years ago
  99. 61c1601 Use cached types; no functionality change. by John McCall · 13 years ago
  100. 3ade975 implement a nice new optimization: CodeGenTypes::UpdateCompletedType by Chris Lattner · 13 years ago