1. d5a3b78 Make sure that forward declarations are marked as such in the debug info by Eric Christopher · 14 years ago
  2. 7a71524 The cheap version of getName() is sufficient here. by Benjamin Kramer · 14 years ago
  3. a9e269e The _setjmp builtin library function should have the "returns twice" by Bill Wendling · 14 years ago
  4. ce27567 Correct the code generation for function arguments of vec3 types on x86_64 when they are greater than 128 bits. This was incorrectly coercing things like long3 into a double2. by Tanya Lattner · 14 years ago
  5. 5c00fc3 Another silly workaround for MSVC. by Peter Collingbourne · 14 years ago
  6. 567f02f Sigh, another workaround for MSVC. by Peter Collingbourne · 14 years ago
  7. 3fb91f6 Work around a gcc4.2 bug. by Peter Collingbourne · 14 years ago
  8. 8681160 When destroying temporaries, instead of a custom cleanup use the by Peter Collingbourne · 14 years ago
  9. 2871020 Add inreg attributes to reference arguments. by Rafael Espindola · 14 years ago
  10. 13dc8f9 Reference initialization with initializer lists. by Sebastian Redl · 14 years ago
  11. 7401cf5 Use static storage duration for file-scope compound literals, even when they by Richard Smith · 14 years ago
  12. b619688 implement __has_feature(address_sanitizer); also use LangOpts.AddressSanitizer instead of CodeGenOpts.AddressSanitizer by Kostya Serebryany · 14 years ago
  13. c3c8f22 CodeGen: Simplify code. by Benjamin Kramer · 14 years ago
  14. 5c247db CodeGen: allow __asm renaming on static local variables. by Benjamin Kramer · 14 years ago
  15. 5a1ac89 Finish r144971, which was an incomplete commit. by Eli Friedman · 14 years ago
  16. 7e7ad3f Fix the meaning of an "empty" record for the case of a zero-length array. Use isEmptyRecord for arguments on x86-32; there are structs of size 0 which don't count as empty. by Eli Friedman · 14 years ago
  17. 8d2fe42 Make va_arg on x86-64 compute alignment the same way as argument passing. by Eli Friedman · 14 years ago
  18. 7b1fb81 A bunch of fixes to argument passing and va_arg on Darwin x86-32 for structures containing an SSE vector. by Eli Friedman · 14 years ago
  19. 506d4e3 Don't try to expand struct arguments containing holes on x86-32. From gcc struct layout tests. by Eli Friedman · 14 years ago
  20. bd4d3bc Simplify code for returning a struct for Darwin x86-32 ABI. Use a better type for a function returning a struct containing only a pointer. Handle the edge case of a struct containing only a float or double plus some dead padding instead of asserting. by Eli Friedman · 14 years ago
  21. 5a4d352 Ignore empty unions in argument lowering on x86-32. From gcc struct layout tests. by Eli Friedman · 14 years ago
  22. 88c2596 Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continue by Argyrios Kyrtzidis · 14 years ago
  23. deae6a8 Use the canonical decl to index so that we can really find it later. by Eric Christopher · 14 years ago
  24. e24f5fc Constant expression evaluation: add support for evaluation of member pointers by Richard Smith · 14 years ago
  25. 1b4eca6 Add -f[no-]address-sanitizer flag by Kostya Serebryany · 14 years ago
  26. 9254bf7 Match LLVM API change. by Evan Cheng · 14 years ago
  27. 2f77b3d Fix a bunch of really nasty bugs in how we compute alignment for reference lvalues. PR11376. by Eli Friedman · 14 years ago
  28. ca3d3fc Fix crash in calling convention code expanding an struct with a complex member. by Eli Friedman · 14 years ago
  29. bf97947 Fixup comment. by Eric Christopher · 14 years ago
  30. 1bf9a9e Represent an APValue based on a Decl as that Decl, rather than a DeclRefExpr by Richard Smith · 14 years ago
  31. b6d7114 Add invariant.load metadata to loads from selector references. Allows these loads to later be moved/combined in the optimizer. Fixes <rdar://problem/6027699> by Pete Cooper · 14 years ago
  32. a60279d Add missing dependency for shared library build to CMakeLists. Patch by Johannes Obermayr. by Eli Friedman · 14 years ago
  33. 6f103ba Whenever explicitly activating or deactivating a cleanup, we by John McCall · 14 years ago
  34. b99785b Fix a subtle bug with cleanups: when activating by John McCall · 14 years ago
  35. 1a343eb Enter the cleanups for a block outside the enclosing by John McCall · 14 years ago
  36. 180f479 Constant expression evaluation: support for evaluation of structs and unions of by Richard Smith · 14 years ago
  37. 7480d96 Reflow lines, remove else-if after returns, rename variable "TydefContext" to by Nick Lewycky · 14 years ago
  38. a8ecd7c Remove unnecessary include. by Devang Patel · 14 years ago
  39. 7b3819d Reflow one line I missed in previous cleanup commit. No functionality change. by Nick Lewycky · 14 years ago
  40. d4c100e Minor cleanup, mostly reindenting. Remove one helper function that just called by Nick Lewycky · 14 years ago
  41. a59e4b7 Emit the copy and dipose helpers for ARC __strong by John McCall · 14 years ago
  42. a5493f8 Bind function "r-values" as l-values when emitting them as by John McCall · 14 years ago
  43. 9da2352 Fix the layout of vb-tables and vf-tables in the MS C++ ABI. by John McCall · 14 years ago
  44. 83084c8 lib/CodeGen/CGBuiltin.cpp: Tweak the identifier "Type" to appease msvc. by NAKAMURA Takumi · 14 years ago
  45. da95f73 Clean up type flags for overloaded Neon builtins. No functional change. by Bob Wilson · 14 years ago
  46. cc5d4f6 Constant expression evaluation: support for arrays. by Richard Smith · 14 years ago
  47. 7864435 Rip out CK_GetObjCProperty. by John McCall · 14 years ago
  48. db45806 Rip the ObjCPropertyRef l-value kind out of IR-generation. by John McCall · 14 years ago
  49. 4b9c2d2 Change the AST representation of operations on Objective-C by John McCall · 14 years ago
  50. b49d5a6 Use a single integer type for a sub-doubleword part of a byval structure. by Akira Hatanaka · 14 years ago
  51. 1bb94a4 Fix alignment on alloca's for parameters using ABIArgInfo::Expand. by Eli Friedman · 14 years ago
  52. ddfb8d1 Fix the alignment on scalar parameter variables so that it matches what the AST thinks it should be. Per report on cfe-dev. by Eli Friedman · 14 years ago
  53. 9030693 Do not add "byval" attribute to records with non-trivial copy constructors by Jan Wen Voung · 14 years ago
  54. b551dd3 Set MinABIStackAlignInBytes to 8 if ABI is N32/64. by Akira Hatanaka · 14 years ago
  55. d5a257f Convert the type of a structure passed by value if it has double precision by Akira Hatanaka · 14 years ago
  56. c0e3b66 Return function results whose size is smaller than 128-bits in registers if ABI by Akira Hatanaka · 14 years ago
  57. c637d73 back out changes in r143399 and r143475. by Fariborz Jahanian · 14 years ago
  58. 3b694fa Check for homogeneous aggregate return values with ARM's AAPCS-VFP ABI. by Bob Wilson · 14 years ago
  59. 64f45a2 Fix the representation of wide strings in the AST and IR so that it uses the native representation of integers for the elements. This fixes a bunch of nastiness involving by Eli Friedman · 14 years ago
  60. d8c4551 Adds IRGen support for captured rvalue references in blocks. by Fariborz Jahanian · 14 years ago
  61. eea6480 In x86_64, when calling an Objective-C method that returns a _Complex long double, make sure to use the objc_msgSend_fp2ret function which ensures that the return value will be {0, 0} if the receiver is nil. by Anders Carlsson · 14 years ago
  62. aaf2f36 Turn on the new .file directive when appropriate, instead of turning it off. by Nick Lewycky · 14 years ago
  63. 22a7dfe Add support for lazily linking bitcode files (using a new by Peter Collingbourne · 14 years ago
  64. 51f4708 Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it will by Richard Smith · 14 years ago
  65. ef8857d In case of template specialization, do not try to delay emitting debug info for concrete type in -flimit-debug-info mode. This fixes some of the failures from bs15503.exp tests in gdb testsuite. by Devang Patel · 14 years ago
  66. cc4889f Fix PR9614 for functions with the always_inline attribute. Try to keep by Rafael Espindola · 14 years ago
  67. 6f3887e It turns out that the Objective-C message lookup functions can throw exceptions after all... by David Chisnall · 14 years ago
  68. c5096cb Annotate imprecise FP division with fpaccuracy metadata by Peter Collingbourne · 14 years ago
  69. 6c29eda Objective-c: fix an ir-gen crash where objc messag returns a _Complex by Fariborz Jahanian · 14 years ago
  70. a411d2f Fix pr9614 by not emitting an available_externally function when it calls by Rafael Espindola · 14 years ago
  71. 3c3b7f9 Restore r142914 and r142915, now with missing file and apparent by John McCall · 14 years ago
  72. 327a50f Revert r142914 and r142915, due to possibly missing file. by NAKAMURA Takumi · 14 years ago
  73. 9d06ba8 Change an int64_t to an intptr_t so that we don't end up with crashes in the back end on large classes on 32-bit. by David Chisnall · 14 years ago
  74. a1b852f Introduce a placeholder type for "pseudo object" by John McCall · 14 years ago
  75. ba0513d Implement support for dependent Microsoft __if_exists/__if_not_exists by Douglas Gregor · 14 years ago
  76. 0986eb5 Remove the SystemZ backend. by Dan Gohman · 14 years ago
  77. 4142251 Do not drop type qualifiers in -flimit-debug-info mode. by Devang Patel · 14 years ago
  78. b000459 Don't try to emit CK_LValueBitCast casts as constants. PR9558. by Eli Friedman · 14 years ago
  79. 2a04f1c Fix mismatched new[]/delete[]. by Benjamin Kramer · 14 years ago
  80. dfa4ab9 Remove debugging printfs that some idiot left in. by David Chisnall · 14 years ago
  81. 89c3004 Enable experimental support for objc_msgSend with GNUstep ObjC runtime. by David Chisnall · 14 years ago
  82. bfcacd9 Fix a typo that completely broke the expansion of complex arguments. by Bob Wilson · 14 years ago
  83. f5c7504 Remove obsolete debugging macro, make helper static. by Benjamin Kramer · 14 years ago
  84. 0625366 Fix PR11073 by adding the argument type information to the decl we construct by Eric Christopher · 14 years ago
  85. 13c7fcc c++: support gcc's application of weak attribute on by Fariborz Jahanian · 14 years ago
  86. 7c4fd91 Take DW_AT_comp_dir from $PWD when it's present and starts with a '/'. This is by Nick Lewycky · 14 years ago
  87. b9c8c42 Add block information for ObjC @catch blocks. by Eric Christopher · 14 years ago
  88. c328779 Add a new subclass of RunCleanupScopes that also handles creating new by Eric Christopher · 14 years ago
  89. 2dde35b More metaprogramming with builtin types. by John McCall · 14 years ago
  90. e0a22d0 Macro metaprogramming for builtin types. by John McCall · 14 years ago
  91. 97c0aef Rewrite parts of MS ABI C++ layout. Based on work by r4start; I ended up doing this while I was trying to review his patch. by Eli Friedman · 14 years ago
  92. ea523d7 Wire up support for the controlling the extended dwarf .file directive. With by Nick Lewycky · 14 years ago
  93. 0ddaeb9 Add a new placeholder type to represent "unbridged" casts in ARC. by John McCall · 14 years ago
  94. 96fda0c Convert inline asm source ranges into clang SourceRanges and print them with the instantiated note. by Benjamin Kramer · 14 years ago
  95. 1d236ab Replace vectors with arrays. by Benjamin Kramer · 14 years ago
  96. c8645e3 Handle an edge case involving the conditional operator and throw expressions. PR10582. by Eli Friedman · 14 years ago
  97. aa4a99b Provide half floating point support as a storage only type. by Anton Korobeynikov · 14 years ago
  98. 2be4607 Misc fixes for atomics. Biggest fix is doing alignment correctly for _Atomic types. by Eli Friedman · 14 years ago
  99. 2b5cfbc Simplify code to avoid a useless string copy. by Benjamin Kramer · 14 years ago
  100. bcbca75 Upgrade to PathV2. by Benjamin Kramer · 14 years ago