1. 468e8fb test case for r112238. by Devang Patel · 14 years ago
  2. 34feff6 Fix horrible GRExprEngine bug where switch statements with no 'case:' statements would cause the path to get prematurely aborted. Fixes <rdar://problem/8360854>. by Ted Kremenek · 14 years ago
  3. 2e29a99 add radar # by Chris Lattner · 14 years ago
  4. bbae8b4 fix 2xi16 to pass as i32 instead of <2 x i16>. The former passes in by Chris Lattner · 14 years ago
  5. 0fefa41 vector of long and ulong are also classified as INTEGER in x86-64 abi, by Chris Lattner · 14 years ago
  6. 473f8e7 1 x ulonglong needs to be classified as INTEGER, just like 1 x longlong, by Chris Lattner · 14 years ago
  7. cebc376 ...I forgot to check my new test after adding it, and lo, there's slightly different by John McCall · 14 years ago
  8. 9e46b8c Make sure we clear TypeSpecOwned when setting TypeSpecType to something when by John McCall · 14 years ago
  9. 2d9e21f Tweak the @selector completion to collapse multiple informative and by Douglas Gregor · 14 years ago
  10. 3cdee12 When code-completing a potential call to a C++ non-static member by Douglas Gregor · 14 years ago
  11. e7ab92e Fix miscompilation. The cookie was not used when new'ing arrays with multiple dimensions. by Argyrios Kyrtzidis · 14 years ago
  12. 458433d Implement code completion for @selector expressions by Douglas Gregor · 14 years ago
  13. 9a2d44c More ordering tweaks in this silly, silly test by Douglas Gregor · 14 years ago
  14. 1e5e668 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  15. a8b7a7d tame an assertion, fixing rdar://8357396 by Chris Lattner · 14 years ago
  16. a958422 Tweak test to avoid checking for a specific ordering where none exists by Douglas Gregor · 14 years ago
  17. 95f3355 Add libclang API hook "clang_getIBOutletCollectionType" to query the collection type for iboutletcollection attributes. by Ted Kremenek · 14 years ago
  18. e84f9eb With lax vector conversions (the default) make sure we convert between two by Eric Christopher · 14 years ago
  19. 9214819 Revert "Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  20. 0f93758 Fix typo in error message and testcase. by Eric Christopher · 14 years ago
  21. 8028bfa Revert r112043, static volatiles are removed by the optimizer. Thanks Chris! by Argyrios Kyrtzidis · 14 years ago
  22. 22fd4ba Finally pass "two floats in a 64-bit unit" as a <2 x float> instead of by Chris Lattner · 14 years ago
  23. d293298 Fix miscompilation. The custom new[]/delete[] methods were not getting called for arrays with more than 1 dimension. by Argyrios Kyrtzidis · 14 years ago
  24. 967fea6 Improved the handling of blocks and block variables in PseudoConstantAnalysis by Tom Care · 14 years ago
  25. 141a4d4 Fix RUN line in test. by Ted Kremenek · 14 years ago
  26. d8b0a84 When annotating tokens, don't fallback to annotating with a null cursor for cursors that come before a macro instantiation. Fixes <rdar://problem/7974151>. by Ted Kremenek · 14 years ago
  27. c7ed372 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  28. 721f359 When combining the code-completion results from Sema long with the by Douglas Gregor · 14 years ago
  29. 938e5a1 Robustify test. by Devang Patel · 14 years ago
  30. 44f57f0 Test for previous commit by Douglas Gregor · 14 years ago
  31. 55817af Introduce a preprocessor code-completion hook for contexts where we by Douglas Gregor · 14 years ago
  32. 1e32ca6 Implement __builtin_printf, __builtin_fprintf. Fixes <rdar://problem/8336581>. by Douglas Gregor · 14 years ago
  33. 58b5259 Recursive functions should be marked when used from another function. Fixes http://llvm.org/PR7923. by Argyrios Kyrtzidis · 14 years ago
  34. f869d20 Make sure volatile variables are emitted even if static. Fixes rdar://8315219 by Argyrios Kyrtzidis · 14 years ago
  35. 58e390e Support explicit instantiation of function templates and members of class by Chandler Carruth · 14 years ago
  36. 33eaddd tests: Disable this test for now, it is overly pessimistic and I am not sure how to fix it. by Daniel Dunbar · 14 years ago
  37. 89f176d IRgen: Fix a horrible bug in pointer to bool conversion, which we were treating by Daniel Dunbar · 14 years ago
  38. a8f28da Expression statements undergo lvalue-to-rvalue conversion in C, by John McCall · 14 years ago
  39. 408be5a When performing completions involving Objective-C method declarations by Douglas Gregor · 14 years ago
  40. 95f1b86 No need to default synthesize property if implementation by Fariborz Jahanian · 14 years ago
  41. 0554e0e Fix 'for' loop variables' scope. by Devang Patel · 14 years ago
  42. eb0d014 Give a slight preference to functions returning "void" when we're by Douglas Gregor · 14 years ago
  43. 124300e Preserve invalidity of typeof operands in C++. by John McCall · 14 years ago
  44. d43dd83 In code-completion contexts where both types and other values are by Douglas Gregor · 14 years ago
  45. c988fab Catch the case of trying to turn '&(X::a)' into a member pointer as well. by John McCall · 14 years ago
  46. 28a7f25 USRs for class extensions should "mangle" in the location of the extension. (<rdar://problem/8350262>) by Ted Kremenek · 14 years ago
  47. 957355e Move the test for radar 8018252 to SemaCXX/expressions.cpp. by Fariborz Jahanian · 14 years ago
  48. fb97e75 When trying to resolve the address of an overloaded expression, by John McCall · 14 years ago
  49. 4153a06 AST writer support for having specializations of templates from earlier in the chain. This ought to finish C++ chained PCH support. by Sebastian Redl · 14 years ago
  50. ecbd4a8 Remove i386 macro check from expected output of preprocessor by Douglas Gregor · 14 years ago
  51. f7c16d9 Frontend: Add basic -H support. by Daniel Dunbar · 14 years ago
  52. 545be51 Add some missing X86-specific asm constraint letters, and fix by Dale Johannesen · 14 years ago
  53. 9325eaf Fix printf format string checking for '%lc' (which expects a wint_t or compatible argument). Fixes PR 7981. by Ted Kremenek · 14 years ago
  54. 4020f87 It is not error in c++ to take address of by Fariborz Jahanian · 14 years ago
  55. f29c523 Implement code completion for preprocessor expressions and in macro arguments. by Douglas Gregor · 14 years ago
  56. db91864 tests: Use REQUIRES: instead of XFAIL: for crash recovery tests; running them on by Daniel Dunbar · 14 years ago
  57. ef52bcb Improvements to IdempotentOperationChecker and its use of PseudoConstantAnalysis by Tom Care · 14 years ago
  58. 1fbb447 Implement preprocessor code completion where a macro name is expected, by Douglas Gregor · 14 years ago
  59. f44e854 Introduce basic code-completion support for preprocessor directives, by Douglas Gregor · 14 years ago
  60. cdaa6a8 Fix a bug in nonfragile-abi2 when attempting to diagnose by Fariborz Jahanian · 14 years ago
  61. 83482d1 When providing completions for a function or method argument that by Douglas Gregor · 14 years ago
  62. 09a63c9 Parse all kinds of declarations as part of a linkage-specification, by Douglas Gregor · 14 years ago
  63. 3a91abf Diagnose the presence of multiple initializations of static data by Douglas Gregor · 14 years ago
  64. fb3bb31 PR7971: Compute the correct type for an address-of expression containing an by Eli Friedman · 14 years ago
  65. d32b022 Provide code completion results for the context-sensitive Objective-C by Douglas Gregor · 14 years ago
  66. 5967d62 Add testcase for C++ chained PCH and fix the bugs it uncovered in name lookup. by Sebastian Redl · 14 years ago
  67. aaa107a When calling a function or messaging a method marked "sentinel", add by Douglas Gregor · 14 years ago
  68. 58ddb60 Introduce new libclang API functions that determine the availability by Douglas Gregor · 14 years ago
  69. 6237cea Emit debug info for enum constants. by Devang Patel · 14 years ago
  70. aa5f77b Include __FUNCTION__, __PRETTY_FUNCTION_, __func__ in code-completion by Douglas Gregor · 14 years ago
  71. fb62941 Introduce a code-completion hook for the Objective-C collection by Douglas Gregor · 14 years ago
  72. 673745f Driver/Darwin: Switch to using simplified tool chain by default -- what better by Daniel Dunbar · 14 years ago
  73. 8238941 Modified pseudoconstant test case to make it a bit clearer and fix a missing line by Tom Care · 14 years ago
  74. db34ab7 Several small changes to PseudoConstantAnalysis and the way IdempotentOperationChecker uses it. by Tom Care · 14 years ago
  75. 000835d Support for IRGen of synthesize bitfield ivars in by Fariborz Jahanian · 14 years ago
  76. e5848d6 test case for PR7920. by Devang Patel · 14 years ago
  77. 2ccccb3 Introduce a new code-completion point when we're parsing a by Douglas Gregor · 14 years ago
  78. ae2fb14 When complaining about a duplicate declspec, provide a Fix-It that by Douglas Gregor · 14 years ago
  79. 4e6fbce Relax the construction of a definition for implicit, trivial default by Chandler Carruth · 14 years ago
  80. 42d0f2a In Sema::AddBuiltinOperatorCandidates, candidate pointer types set can also contain a ObjCObjectPointerType since r111699. by Argyrios Kyrtzidis · 14 years ago
  81. b6c504b fix rdar://8340348, a miscompile of boost that was exposed by r109848. by Chris Lattner · 14 years ago
  82. 0bab0cd Abstract out everything having to do with member pointers into the ABI by John McCall · 14 years ago
  83. f16aa10 Go back to asking CodeGenTypes whether a type is zero-initializable. by John McCall · 14 years ago
  84. b8f7de9 Do not elide copy construction when we're performing base-class initialization by Douglas Gregor · 14 years ago
  85. db68e28 Eliminate a stale assertion. Fixes Clang self-host. by Douglas Gregor · 14 years ago
  86. 8c3e554 Preserve the zero-initialization and construction-kind settings when by Douglas Gregor · 14 years ago
  87. 759e41b When performing value-initialization for a class with a non-trivial, by Douglas Gregor · 14 years ago
  88. e14add4 Clean up a very silly use of first-class aggregates. by John McCall · 14 years ago
  89. d608cdb Experiment with using first-class aggregates to represent member function by John McCall · 14 years ago
  90. 875ab10 Abstract out member-pointer creation. I'm really unhappy about the current by John McCall · 14 years ago
  91. 1e33f4f Avoid including mm_malloc.h in a cc1 test, it pulls in system headers. by Benjamin Kramer · 14 years ago
  92. 85eaff3 This test needs a triple: it's checking the alignment of a pointer in bytes. by John McCall · 14 years ago
  93. 983e3d7 IRgen: Set the alignment correctly when creating LValue for a decls. by Daniel Dunbar · 14 years ago
  94. f52697a Improve test coverage. by Daniel Dunbar · 14 years ago
  95. f051d06 filecheckize test by Chris Lattner · 14 years ago
  96. 496af57 fix PR7943, a corner case with the GNU __VA_ARGS__ comma swallowing extension. by Chris Lattner · 14 years ago
  97. 648d200 Contributed test case for PR7936 by Jean-Daniel Dupas. by Fariborz Jahanian · 14 years ago
  98. 2e2acec patch to support comparison involving by Fariborz Jahanian · 14 years ago
  99. a60786b Fix an issue with writing to PCH another included PCH, introduced by the "using an AST on-disk hash table for name lookup" commit. by Argyrios Kyrtzidis · 14 years ago
  100. 01b57e3 Disallow direct inclusion of avxintrin.h. Users should include immintrin.h instead. This matches GCC's behavior. by Benjamin Kramer · 14 years ago