1. fb527dc Test case for 157547. Before that patch, all the digits would be mangled by Charles Davis · 12 years ago
  2. 9fd2359 Mangle template instantiations properly (as of VC 7.x) when compiling for by Charles Davis · 12 years ago
  3. 976f266 fix codegen support for alloc_size attribute for static C++ methods by Nuno Lopes · 12 years ago
  4. 41be8cd Don't ignore linkage when ignoring visibility in the instantiation of a by Rafael Espindola · 12 years ago
  5. 9db614f Don't ignore linkage when ignoring visibility in the instantiation of a by Rafael Espindola · 12 years ago
  6. 20831e2 Consider the linkage for member class templates even when we have to ignore by Rafael Espindola · 12 years ago
  7. ad359be When ignoring visibility in an instantiation, still consider the linkage. by Rafael Espindola · 12 years ago
  8. 3c6ba4d Move file to be more representative. by Eric Christopher · 12 years ago
  9. 843efd5 Check that we have an unknown upper bound range for our flexible array members. by Eric Christopher · 12 years ago
  10. 9ee5f46 Emit C++11 enum class information if it exists. by Eric Christopher · 12 years ago
  11. f5de6c9 Test that we emit a subrange type for vlas. by Eric Christopher · 12 years ago
  12. cae1c62 Function template version of the previous patch. by Rafael Espindola · 12 years ago
  13. 0b0ad0a Produce a hidden symbol for zed in by Rafael Espindola · 12 years ago
  14. 2de54fc Test and document a difference from gcc in the handling of visibility by Rafael Espindola · 12 years ago
  15. 0617065 Fix test for 32-bit hosts. by Jakob Stoklund Olesen · 12 years ago
  16. a2ac407 Zap a bogus assert for delegating constructors. PR12890, part 2. by Eli Friedman · 12 years ago
  17. 37e4cea Update API usage for llvm DIBuilder changes for rvalue reference by Eric Christopher · 12 years ago
  18. 797105a Fix the visibility of instantiations of static data members. Fixes pr12835. by Rafael Espindola · 12 years ago
  19. 31c195a Fix our handling of visibility in explicit template instantiations. by Rafael Espindola · 12 years ago
  20. 6314db9 PR12798: Don't drop part of the nested name specifier when instantiating a by Richard Smith · 12 years ago
  21. 4b50263 Change the mangling of a ref-qualifier on a function type so that by John McCall · 12 years ago
  22. 5dfced8 Slightly generalize FileCheck patterns to unbreak -Asserts builds. by Richard Smith · 12 years ago
  23. 13ec910 Implement IRGen for C++11's "T{1, 2, 3}", where T is an aggregate and the by Richard Smith · 12 years ago
  24. d079abf A union can have a constexpr defaulted default constructor, if it has an by Richard Smith · 12 years ago
  25. fd00eec This patch adds a new Clang compiler flag "-gline-tables-only". by Alexey Samsonov · 12 years ago
  26. d964d63 Fix non-deterministic iteration order when walking the specializations by Chandler Carruth · 12 years ago
  27. 92c6c90 Merge x86-64-abi-sret-vs-2word-struct-param.cpp into the generic by John McCall · 12 years ago
  28. 2a7b09d Restructure some of the member-pointer tests, implicitly by John McCall · 12 years ago
  29. 287ab9f clang/test/CodeGenCXX: Fix two tests, destructors.cpp and microsoft-abi-array-cookies.cpp, for -Asserts. by NAKAMURA Takumi · 12 years ago
  30. 20bb175 Abstract the emission of global destructors into ABI-specific code by John McCall · 12 years ago
  31. 5729672 PR12710 - broken default argument handling for templates. by David Blaikie · 12 years ago
  32. 2e7651d Remove some not-very-stable assumptions from this testcase. by John McCall · 12 years ago
  33. e2b45e2 Refactor the C++ ABI code a little bit to take advantage of by John McCall · 12 years ago
  34. 3a8ac07 When mangling a synthetic function declaration, we might not have by John McCall · 12 years ago
  35. a1366cb PR12224 (sort of): Diagnose inheriting constructor declarations in C++11 mode. by Richard Smith · 12 years ago
  36. c8f11e9 Add a missing check in CodeGen of packed classes with vtables. <rdar://problem/11324125>. by Eli Friedman · 12 years ago
  37. 87380aa Forward declarations should take a context. This helps the debugger by Eric Christopher · 12 years ago
  38. 923b0c9 Fix visibility when we have two types with explicit visibility in a template by Rafael Espindola · 12 years ago
  39. 546ee6d Add another testcase that was not being covered. by Rafael Espindola · 12 years ago
  40. a5416bd Add a testcase that we already get right but was not being tested. Found by Rafael Espindola · 12 years ago
  41. 71776ef Cleanup testcase. by Rafael Espindola · 12 years ago
  42. f6a8b9c An attribute in a explicit template installation should take precedence over by Rafael Espindola · 12 years ago
  43. 5118337 Revert 155102 but add a fixme while I debug what is wrong with chrome's by Rafael Espindola · 12 years ago
  44. 1664d54 PR12571: Objects of type clang::ConstantArrayType aren't always emitted with by Richard Smith · 12 years ago
  45. a77e072 Add another missing testcase. by Rafael Espindola · 12 years ago
  46. bc356d0 Add a testcase we were already getting right, but were not testing for. by Rafael Espindola · 12 years ago
  47. 60115a0 Fix handling of template parameters. Found by inspection. GCC 4.7 agrees by Rafael Espindola · 12 years ago
  48. 8560791 Fix bug 12574 - Avoid infinite recursion in constructors and destructors when using Microsoft C++ ABI by Timur Iskhodzhanov · 12 years ago
  49. c7e6060 In mergeVisibility, if we already have an explicit visibility, keep it. by Rafael Espindola · 12 years ago
  50. 1c7eed7 In mergeVisibilityWithMin, let an implicit hidden symbol take precedence over by Rafael Espindola · 12 years ago
  51. 13bffc5 PR 12586: Fix assert while running libc++ testsuite: deal with exception by Richard Smith · 12 years ago
  52. 87162c2 PR12569: Instantiate exception specifications of explicit instantiations by Richard Smith · 12 years ago
  53. e6975e9 Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. by Richard Smith · 12 years ago
  54. e9836a2 Revert r154749 for now at John McCall's request. by Rafael Espindola · 12 years ago
  55. cefc3af Implement C++11 [expr.prim.general]p3, which permits the use of 'this' by Douglas Gregor · 12 years ago
  56. fe58720 PR12226: don't generate wrong code if a braced string literal is used to by Richard Smith · 12 years ago
  57. 767f7c7 Consider visibility attributes last, so that they take precedence. by Rafael Espindola · 12 years ago
  58. 38baeab Don't enter cleanups for unreachable variables. It's impossible to by John McCall · 12 years ago
  59. 7444639 Fix a trivial oversight with apple-kext static local destructors by John McCall · 12 years ago
  60. 47bfcca Fix some i1/i8 confusion within _Atomic(bool) in IR generation, both by Douglas Gregor · 12 years ago
  61. 4f95f64 Testcase for previous commit. by Eric Christopher · 12 years ago
  62. 944b562 Update recently-added test to use new __c11_ form of atomic builtins. by Richard Smith · 12 years ago
  63. 5d70cfd Make __atomic_init() (soon to be __c11_atomic_init()) work with non-scalar types. by David Chisnall · 12 years ago
  64. 3a3c9b2 Allow c++ initialisers to initialise _Atomic fields. by David Chisnall · 12 years ago
  65. abf65ce Improve the printing of __PRETTY_FUNCTION__ more provide more by Douglas Gregor · 12 years ago
  66. 49149fe Don't forget to evaluate the subexpression in a null pointer cast. If we're by Richard Smith · 12 years ago
  67. d2008e2 Implement support for null non-type template arguments for non-type by Douglas Gregor · 12 years ago
  68. 30fa370 Use atexit when __cxa_atexit isn't available instead of adding a by John McCall · 12 years ago
  69. b4051e7 Implement C++11 [temp.arg.nontype]'s permission to use the address of an object by Richard Smith · 12 years ago
  70. f54486a Move the computation of the lambda mangling information (mangling by Douglas Gregor · 12 years ago
  71. 9595dae Don't crash (assert failure) when generating blocks for C++ types with a non-const copy constructor. by David Chisnall · 12 years ago
  72. ea32047 Change location information for synthesized properties to be at the by Eric Christopher · 12 years ago
  73. 355bba7 Make sure we unique static-local decls across multiple emissions of by John McCall · 12 years ago
  74. 0f30a12 Revert r153723, and its follow-ups r153728 and r153733. by Chandler Carruth · 12 years ago
  75. 49d26d2 Do the static-locals thing properly in the face of unions and by John McCall · 12 years ago
  76. 9993cc7 When emitting a static local variable in C++, handle by John McCall · 12 years ago
  77. 5fe61c6 ConstStructBuilder: fix offset math for base classes so it works correctly in general. Found by inspection. by Eli Friedman · 12 years ago
  78. 649b4a1 Revert r153613 as it's causing large compile-time regressions on the nightly testers. by Chad Rosier · 12 years ago
  79. 57cd1b8 When we can't prove that the target of an aggregate copy is by John McCall · 12 years ago
  80. 82fe6ae Move the emission of strict enum range metadata behind a flag (the same by Chandler Carruth · 12 years ago
  81. 74873c4 Fix copy and pasto. by Rafael Espindola · 12 years ago
  82. c3f8955 Add back r153360 with a fix for enums that cover all the 32 bit values. by Rafael Espindola · 12 years ago
  83. 88a569a Revert r153360 (and r153380), "Second part of PR12251. Produce the range metadata in clang for booleans and". by NAKAMURA Takumi · 12 years ago
  84. 539a230 On i386 the alignment of i64 is 4, not 8. by Benjamin Kramer · 12 years ago
  85. e27af29 Second part of PR12251. Produce the range metadata in clang for booleans and by Rafael Espindola · 12 years ago
  86. 8bd37f1 Relax the FileCheck assertions in this test a touch. Previously the test by Chandler Carruth · 12 years ago
  87. 260a3e4 For the annals of subtle but terrible bugs: fix a longstanding bug by John McCall · 12 years ago
  88. fce8009 Fix a use-after-free in thunk emission. EmitThunk may call RAUW on Init, invalidating the pointer. by Benjamin Kramer · 12 years ago
  89. 6181e56 Debug info: Tighten up uses of plain MDNode pointers which don't survive replaceOperandWith. by Benjamin Kramer · 12 years ago
  90. 2eb2729 Make the storing variable's name generic. by Bill Wendling · 12 years ago
  91. 0821263 When "low alignment" is specified, then set the alignment of the aggregate's by Bill Wendling · 12 years ago
  92. 1671745 Add support to mangle templated member function names with template args. by Eric Christopher · 12 years ago
  93. 3b10cfe When adding member functions to a class add any specializations of by Eric Christopher · 12 years ago
  94. 9cda03f Ensure that default arguments are handled correctly in sub scopes. For example: by James Molloy · 12 years ago
  95. 2f47c36 The type of a definition should not increase its visibility. Fixes PR12221. by Rafael Espindola · 12 years ago
  96. f52757d Only make a call to a copy constructor elidable if in fact we are by Douglas Gregor · 12 years ago
  97. dd2ecee Unify the BlockDeclRefExpr and DeclRefExpr paths so that by John McCall · 12 years ago
  98. 540659e Make sure the accessors for overridden methods don't return inherited constructors. Fixes PR12219. by Eli Friedman · 12 years ago
  99. 36f5cfe Support for raw and template forms of numeric user-defined literals, by Richard Smith · 12 years ago
  100. 71cba34 Make sure we update the static local decl address map when we are forced to rebuild a global because of the initializer. <rdar://problem/10957867>. by Eli Friedman · 12 years ago