1. 0353a7b Fix the emission of the copy-initialization of a block capture by John McCall · 11 years ago
  2. be9e8bf Add more of the command line options as attribute flags. by Bill Wendling · 12 years ago
  3. bd7370a Use the actual ABI-determined C calling convention for runtime by John McCall · 12 years ago
  4. 1d4fff5 Better support for constructors with -cxx-abi microsoft, partly fixes PR12784 by Timur Iskhodzhanov · 12 years ago
  5. a2bb892 Don't cache the visibility of types. by Rafael Espindola · 12 years ago
  6. 5e8577e Use the correct alignment for POD-member memcpys where the first field is a by Lang Hames · 12 years ago
  7. 8992457 Reapply r176133 with testcase fixes. by Bill Wendling · 12 years ago
  8. b58f810 Use existing macros to simplify the test a bit. by Rafael Espindola · 12 years ago
  9. d3b2f0a Use the most recent decl in getExplicitVisibility. by Rafael Espindola · 12 years ago
  10. d7a60ad Be more careful in applying pragma weak. Fixes pr14974. by Rafael Espindola · 12 years ago
  11. bb60fc6 [ubsan] Emit single check for left shift. by Will Dietz · 12 years ago
  12. c283311 Revert "Add more attributes from the command line to functions." by Anna Zaks · 12 years ago
  13. d620e09 Add more attributes from the command line to functions. by Bill Wendling · 12 years ago
  14. 5956bcc PR15338: Don't assert if -fsanitize=bounds sees array indexing on an incomplete by Richard Smith · 12 years ago
  15. a0a628f ubsan: Emit bounds checks for array indexing, vector indexing, and (in really simple cases) pointer arithmetic. This augments the existing bounds checking with language-level array bounds information. by Richard Smith · 12 years ago
  16. 02fb50d Remove the hack that avoided mangling static functions in extern C contexts. by Rafael Espindola · 12 years ago
  17. 5bb033b Update tests so that we don't test for function-only attributes on call sites. by Bill Wendling · 12 years ago
  18. 4e1125f Update to use references to attribute groups instead of listing the attributes on the call/invoke instructions. by Bill Wendling · 12 years ago
  19. 3892d02 Ignore visibility from enclosing template arguments by John McCall · 12 years ago
  20. 3bba3ef Attempt to clean up tests for non-X86 platforms. by Bill Wendling · 12 years ago
  21. f7a9da0 Modify the tests to use attribute group references instead of listing the by Bill Wendling · 12 years ago
  22. d4c3d66 Add a new 'type_visibility' attribute to allow users to by John McCall · 12 years ago
  23. aad3fa6 Add the missing 'static' keyword to the test by Timur Iskhodzhanov · 12 years ago
  24. a880b19 Add support for -fvisibility-ms-compat. by John McCall · 12 years ago
  25. e95036b Remove block names from test case to unbreak release builds. by Lang Hames · 12 years ago
  26. 56c00c4 Re-apply r174919 - smarter copy/move assignment/construction, with fixes for by Lang Hames · 12 years ago
  27. b4127a2 Emit vtables for an extern template class as available_externally, not as by Richard Smith · 12 years ago
  28. 5a758de Rework the visibility computation algorithm in preparation by John McCall · 12 years ago
  29. c0dcc2d Add the 'target-cpu' and 'target-features' attributes to functions. by Bill Wendling · 12 years ago
  30. 0f9827f Abstract out emitting the vdtor calls and do it properly when using -cxx-abi microsoft; also fix vdtor calls for the ARM ABI by Timur Iskhodzhanov · 12 years ago
  31. c1ea4b9 Update testcases due to Attribute sorting improvements. by Bill Wendling · 12 years ago
  32. 83dece5 Mangle extern "C" functions whose names are not simple identifiers. by Rafael Espindola · 12 years ago
  33. 747836e Partially revert r175117 so that we don't break assumptions about how by Rafael Espindola · 12 years ago
  34. 950fee2 Add a getLanguageLinkage method to VarDecls and FunctionDecls. Use it to fix by Rafael Espindola · 12 years ago
  35. c764830 ubsan: Add checking for invalid downcasts. Per [expr.static.cast]p2 and p11, by Richard Smith · 12 years ago
  36. ba8fa0c ... and now fix the +Asserts build by Timur Iskhodzhanov · 12 years ago
  37. 4745345 Fix the microsoft-abi-structors test expectations to match both Release and Release+Asserts builds by Timur Iskhodzhanov · 12 years ago
  38. 59660c2 Emit virtual/deleting destructors properly with -cxx-abi microsoft, PR15058 by Timur Iskhodzhanov · 12 years ago
  39. 6c9dccd Rename -constructors test to just -structors as in fact it tests dtors too. Also, fix a minor typo in the test. by Timur Iskhodzhanov · 12 years ago
  40. 66b2277 Call __cxa_begin_catch with the current exception before by John McCall · 12 years ago
  41. c2808e7 Backing out r174919 while I investigate a self-host bug on Takumi's builder. by Lang Hames · 12 years ago
  42. 5310859 When generating IR for default copy-constructors, copy-assignment operators, by Lang Hames · 12 years ago
  43. f21107b Use the target address space value when mangling names. by Tanya Lattner · 12 years ago
  44. 55f0593 Permit ABIs where the caller extends the result (test change). by Tim Northover · 12 years ago
  45. f408d1d Drop value names from test to get -Asserts builds back to green. by Benjamin Kramer · 12 years ago
  46. ae3f760 CodeGen: Implement hint values for dynamic_cast as described in the Itanium C++ ABI. by Benjamin Kramer · 12 years ago
  47. 21f6b39 CodeGen: Mark the runtime function __dynamic_cast as readonly & nounwind. by Benjamin Kramer · 12 years ago
  48. 95f3636 clang/test/CodeGenCXX/debug-info-class.cpp: Tweak to unbreak test for a few targets. by NAKAMURA Takumi · 12 years ago
  49. 3fa3fea PR15132: Replace "address expression must be an lvalue or a function by Richard Smith · 12 years ago
  50. 802e226 Don't forget to run destructors when we create an array temporary of class type. by Richard Smith · 12 years ago
  51. 083b90d Generalize DebugInfo tests by avoiding explicit metadata numbers by David Blaikie · 12 years ago
  52. 288c755 clang/test/CodeGenCXX/debug-info-class.cpp: Fixup for -Asserts. by NAKAMURA Takumi · 12 years ago
  53. 0a0f93c Fix exception handling line table problems introduced by r173593 by David Blaikie · 12 years ago
  54. 074cae0 Destroy arrays and ARC fields when throwing out of ctors. by John McCall · 12 years ago
  55. 5e31474 Update the tests. by Bill Wendling · 12 years ago
  56. c264e16 Add support for AArch64 target. by Tim Northover · 12 years ago
  57. 378e1e7 When we're emitting a constructor or destructor call from a delegating by Douglas Gregor · 12 years ago
  58. f0f7fa0 Modify the tests for the (sorted) order that the attributes come out as now. by Bill Wendling · 12 years ago
  59. 319d8fc FileCheck'ize tests by Dmitri Gribenko · 12 years ago
  60. 9eca9f7 Specify non-GNU-ARM triples for key-function test. by Tim Northover · 12 years ago
  61. a7db6a2 Fix up the test. for // rdar://11861085 by Fariborz Jahanian · 12 years ago
  62. 3ac83d6 patch for PR9027 and // rdar://11861085 by Fariborz Jahanian · 12 years ago
  63. f3bbb15 ARM says that the array cookie should always be eight bytes. by John McCall · 12 years ago
  64. d5617ee The standard ARM C++ ABI dictates that inline functions are by John McCall · 12 years ago
  65. e095c65 clang/test/CodeGenCXX/debug-info-static-member.cpp: Appease targetting msvc to add explicit -target x86_64-unknown-unknown. by NAKAMURA Takumi · 12 years ago
  66. 649c731 First step towards vftable generation with -cxx-abi microsoft PR13231 by Timur Iskhodzhanov · 12 years ago
  67. 4b12be6 PR14472: Preserve qualifiers while unwrapping types for debug info by David Blaikie · 12 years ago
  68. a89701b The last of PR14471: Debug info support for inline in-class initializer for float static members by David Blaikie · 12 years ago
  69. e8d7514 Emit the function type of member function pointer types the same as member functions. by David Blaikie · 12 years ago
  70. cd8ab51 Implement C++11 semantics for [[noreturn]] attribute. This required splitting by Richard Smith · 12 years ago
  71. c3ad100 Add testcase missed yesterday. Patch from Paul Robinson. by Eric Christopher · 12 years ago
  72. 0395de3 Collect both normal and static data members of a class in source by Eric Christopher · 12 years ago
  73. 838dc59 Disable caching of visibility. by Rafael Espindola · 12 years ago
  74. 319437f Add -std=c++98 to the test and minor improvment in addition. by Fariborz Jahanian · 12 years ago
  75. e930ff5 Improve on my last test for patch for // rdar://12897704 by Fariborz Jahanian · 12 years ago
  76. c2316db c++ IRGen. In trivial cases that object is going into static by Fariborz Jahanian · 12 years ago
  77. f91cbd5 Don't assert in codegen on static data members which have NoLinkage. Fixes by Nick Lewycky · 12 years ago
  78. b9d61ca Add [artificial] debug info annotation to test matching r171826 by David Blaikie · 12 years ago
  79. 0028ee3 PR14759: Improve/correct support for debug info for C++ member pointers. by David Blaikie · 12 years ago
  80. 6b6bd10 Make checking for 'protected' access in debug info more legible. by David Blaikie · 12 years ago
  81. d8180cf PR14573: Unnamed parameters in debug info, Part 2 by David Blaikie · 12 years ago
  82. 436653b Emit debug info for unnamed parameters. by David Blaikie · 12 years ago
  83. 5f2bd16 Change test/CodeGenCXX/debug-info-method.cpp an IR (rather than asm) test. by David Blaikie · 12 years ago
  84. 42368b5 FileCheck-ize test/CodeGenCXX/debug-info-method.cpp by David Blaikie · 12 years ago
  85. 89e19b4 Don't assert/crash on reference variables in lambdas bound to a by Eli Friedman · 12 years ago
  86. 2d382d1 [ubsan] Recover by default, use -fno-sanitize-recover to disable. by Will Dietz · 12 years ago
  87. 140aadf Add 171048 back but invalidate the cache of all redeclarations when setting by Rafael Espindola · 12 years ago
  88. 0dbe2fb Reinstate r170806, reverted in r170835, with a fix use i1 instead of i8 for a value-initialized bool! by Richard Smith · 12 years ago
  89. 98ab776 Revert r170806, "Fix some bugs where we would sometimes use 0, not -1, when emitting a null constant of type pointer-to-data-member." by NAKAMURA Takumi · 12 years ago
  90. d8af340 Fix some bugs where we would sometimes use 0, not -1, when emitting a null constant of type pointer-to-data-member. by Richard Smith · 12 years ago
  91. e538d48 Make sure CodeGen uses a value of the correct type as the result of by Eli Friedman · 12 years ago
  92. 073fec9 Rein ubsan's vptr sanitizer back a bit. Per core issue 453, binding a reference by Richard Smith · 12 years ago
  93. 4ae711b Don't hit an assertion failure when calculating the __PRETTY_FUNCTION__ by Argyrios Kyrtzidis · 12 years ago
  94. 457d65a clang/test/CodeGenCXX/lambda-expressions.cpp: Relax expression for -Asserts. by NAKAMURA Takumi · 12 years ago
  95. 877efce Make the test less sensitive to the inline threshold. by Nadav Rotem · 12 years ago
  96. 50f089a Make sure the __invoke function for lambdas returns properly. Per bug report on IRC> by Eli Friedman · 12 years ago
  97. c9a9177 Debug Info: Emit vtables pointer members as artificial. by David Blaikie · 12 years ago
  98. 463b48b ubsan: Add -fsanitize=bool and -fsanitize=enum, which check for loads of by Richard Smith · 12 years ago
  99. baab683 Add a triple to this test. It depends on little-endian bitfield layout. by Chandler Carruth · 12 years ago
  100. 5588a69 Add a test case that I've been using to clarify the bitfield layout for by Chandler Carruth · 12 years ago