1. 70316a0 Add support for out-of-line definitions of conversion functions and member operators by Douglas Gregor · 16 years ago
  2. fceeec9 Complete the test after adding handling of merged attributes on decls. by Anton Korobeynikov · 16 years ago
  3. 2f40270 Add full dllimport / dllexport support: both sema checks and codegen. by Anton Korobeynikov · 16 years ago
  4. 7f7bb72 Testcase for stdcall/fastcall sema checks. Patch by Ilya Okonsky! by Anton Korobeynikov · 16 years ago
  5. 86bc6cf Add parser support for __forceinline, __w64, __ptr64. by Steve Naroff · 16 years ago
  6. 239f073 Add parser support for __cdecl, __stdcall, and __fastcall. by Steve Naroff · 16 years ago
  7. c4b4e7b Keep track of template arguments when we parse them. Right now, we don't actually do anything with the template arguments, but they'll be used to create template declarations by Douglas Gregor · 16 years ago
  8. 61366e9 Correct the order in which we cope with end-of-class-definition by Douglas Gregor · 16 years ago
  9. 3e1b16c Last patch, for now, to privde ObjC's encoding of types. by Fariborz Jahanian · 16 years ago
  10. 46a98a7 Fix <rdar://problem/6465284> clang ObjC rewriter: objc_super messed up again. by Steve Naroff · 16 years ago
  11. 1f5432c Merge pr-3188.cpp into constructor.cpp. by Sebastian Redl · 16 years ago
  12. 2a7e58d Add some block-pointer conversions in C++ by Douglas Gregor · 16 years ago
  13. 5b8c7d9 More encoding support; in this case, encoding of by Fariborz Jahanian · 16 years ago
  14. 494bb06 Guard against the return of PR3188 by Sebastian Redl · 16 years ago
  15. 8351da0 Full AST support and better Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  16. 27b09ac Support conversion from a null pointer constant o any Objective-C object pointer type. Fixes rdar://problem/6463298 by Douglas Gregor · 16 years ago
  17. 4b07b29 Partial AST and Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  18. 804058e Patch to remove bogus warning in case of @dynamic by Fariborz Jahanian · 16 years ago
  19. 88a3514 Add support for calls to overloaded member functions. Things to note: by Douglas Gregor · 16 years ago
  20. ff944a8 Add an option to make 'RemoveDeadBindings' a configurable behavior. This enables by Zhongxing Xu · 16 years ago
  21. 3f70456 Add codegen support for __null by Anders Carlsson · 16 years ago
  22. a0fd865 Parser support for C++ try-catch. by Sebastian Redl · 16 years ago
  23. e3f38ea Test case makes a platform assumption, so force triple. by Sebastian Redl · 16 years ago
  24. 0269709 Commit the right version of the test by Anders Carlsson · 16 years ago
  25. b50525b Make sure to emit the size expression for sizeof(type) by Anders Carlsson · 16 years ago
  26. 86f1940 Add support for member references (E1.E2, E1->E2) with C++ semantics, by Douglas Gregor · 16 years ago
  27. 4306d3c Finish up saving original parameter type and by Fariborz Jahanian · 16 years ago
  28. 8f39f5e Make VLAs usable, and make basic usage work correctly. Also, add a by Eli Friedman · 16 years ago
  29. eb91f0e Add some ErrorUnsupported calls and turn on VLA codegen again. by Anders Carlsson · 16 years ago
  30. adcaf54 Strangely enough, name of ObjC class is not encoded into the by Fariborz Jahanian · 16 years ago
  31. e6d5a4a Implement checks for bool in increment and decrement. by Sebastian Redl · 16 years ago
  32. 4193eca Lazy bingding for region-store manager. by Zhongxing Xu · 16 years ago
  33. 43822ea More encoding support. This time for @encode of classes and bitfields. by Fariborz Jahanian · 16 years ago
  34. a46969d Add a missing @end. Why didn't this get diagnosed? by Douglas Gregor · 16 years ago
  35. c788751 Support more implicit conversions for Objective-C types. Addresses <rdar://problem/6458293>. by Douglas Gregor · 16 years ago
  36. e4bb68a Test case for my last @encode patch. by Fariborz Jahanian · 16 years ago
  37. 45920e8 Allow downcasts of pointers to Objective-C interfaces, with a by Douglas Gregor · 16 years ago
  38. 00165a2 Fix for PR3234 by Anders Carlsson · 16 years ago
  39. dda7889 Add some more implicit conversions for Objective-C++ by Douglas Gregor · 16 years ago
  40. 784606f Added test case for suppressing leak warnings for reference-counted objects passed by-reference to an unknown function. by Ted Kremenek · 16 years ago
  41. d6fb7ef Ultrasimplistic sketch for the parsing of C++ template-ids. This won't by Douglas Gregor · 16 years ago
  42. d8df682 Fix http://llvm.org/bugs/show_bug.cgi?id=3189. by Steve Naroff · 16 years ago
  43. a1fcbad Clean up the C89/C++ warnings about C99 array features to not by Chris Lattner · 16 years ago
  44. e878eb0 This is valid in C++. void foo() { return foo(); } by Chris Lattner · 16 years ago
  45. 65ce04b Merge function-return.c into function.c by Chris Lattner · 16 years ago
  46. bc8d564 implement PR3177 - "__extension__ union" not supported in C++ mode by Chris Lattner · 16 years ago
  47. 9103bb2 Delay semantic analysis of the C++ names casts when the subexpression is type-dependent or the destination type is dependent. by Douglas Gregor · 16 years ago
  48. 5f76494 Oops, accidentally commited the wrong version of the test (original by Eli Friedman · 16 years ago
  49. 2342ef7 Do proper recovery from an invalid switch condiition. Fixes PR3229. by Eli Friedman · 16 years ago
  50. 2fb78a7 CF-retain/release checker: by Ted Kremenek · 16 years ago
  51. 90b3236 Fix <rdar://problem/6451816>: by Ted Kremenek · 16 years ago
  52. 0b65b1d Consolidated property check into property-typecheck-1.m file. by Fariborz Jahanian · 16 years ago
  53. 3eb1c54 Removed the warning by Douglas Gregor · 16 years ago
  54. 7d1117d Fix <rdar://problem/6450964> clang on xcode: Assertion failed: (RecordForDecl && "lookupFieldDeclForIvar no storage for class"). by Steve Naroff · 16 years ago
  55. 777f07b diagnose C99 6.9.1p5, C arguments in definitions that are lacking by Chris Lattner · 16 years ago
  56. bc1c877 Semantics of @protocol attributes. by Fariborz Jahanian · 16 years ago
  57. 6fea8d2 fix PR 3222: allow one to get the address of a global function in C++ by Nuno Lopes · 16 years ago
  58. 72b505b Delay parsing of default arguments of member functions until the class by Douglas Gregor · 16 years ago
  59. 105ec4b Patch to check for ObjC's property type. by Fariborz Jahanian · 16 years ago
  60. 3dde5a3 Partial fix for qualified name lookup, such that the lookup of N in by Douglas Gregor · 16 years ago
  61. 3281eff Diagnose that ivars in current and super class may not by Fariborz Jahanian · 16 years ago
  62. 0a59acb Make name lookup when we're inside a declarator's scope, such as ClassName::func, work with the new unqualified name lookup code. Test it with default arguments in out-of-line member definitions by Douglas Gregor · 16 years ago
  63. 69497c3 Added a test for default arguments added to out-of-line member by Douglas Gregor · 16 years ago
  64. 584049d Diagnose erroneous uses of out-of-line member definitions and scope by Douglas Gregor · 16 years ago
  65. 56f20ae Make error handling for va_start a bit more robust. Fixes PR3213. by Eli Friedman · 16 years ago
  66. 9e7d9de Place constructors and destructors into the DeclContext of the class, by Douglas Gregor · 16 years ago
  67. 9fed516 And a test case for my previous patch. by Fariborz Jahanian · 16 years ago
  68. 55f7bcb Fix regression in handling sizeof(void) in the static analyzer. by Ted Kremenek · 16 years ago
  69. 7df7b6b Create new EnumDecl nodes for redeclarations of enums, linking them by Douglas Gregor · 16 years ago
  70. 6eddeb1 MemRegion: by Ted Kremenek · 16 years ago
  71. cfec1db Temporarily XFAIL these tests. by Ted Kremenek · 16 years ago
  72. abb042f A series of cleanups/fixes motivated by <rdar://problem/6442306>: by Ted Kremenek · 16 years ago
  73. 9578504 stdlib.h is the wrong header for printf, and introduces test-breaking definitions of inlines on Linux by Sebastian Redl · 16 years ago
  74. fdb548e fix a buggy fall through that caused a crash-on-invalid. rdar://6248081 by Chris Lattner · 16 years ago
  75. 3e6e67f Add test case for using mmintrin (and making sure that inlining is by Daniel Dunbar · 16 years ago
  76. 42b83dd Implement the final (hopefully) wrinkle to i-c-e + builtin_constant_p by Chris Lattner · 16 years ago
  77. 9d35097 Enable out-of-line definitions of C++ constructors and destructors by Douglas Gregor · 16 years ago
  78. bc3e984 rdar://6060752 - don't warn about trigraphs in bcpl-style comments by Chris Lattner · 16 years ago
  79. 93afb0d Add test of enumerator types by Douglas Gregor · 16 years ago
  80. 04de993 merge these testcases into one file. by Chris Lattner · 16 years ago
  81. 28daa53 implement rdar://6091492 - ?: with __builtin_constant_p as the operand is an i-c-e. by Chris Lattner · 16 years ago
  82. a9053e0 rename recovery-3 to recovery.c by Chris Lattner · 16 years ago
  83. 0ba0dd6 merge recovery-1 into recovery-3. by Chris Lattner · 16 years ago
  84. 18914bc merge recovery-2.c into recovery-3.c. by Chris Lattner · 16 years ago
  85. 4209a39 add expected diag by Chris Lattner · 16 years ago
  86. 670a62c Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
  87. f345acc Testcase for something that already works. Clang agrees with Comeau, by Chris Lattner · 16 years ago
  88. b0da923 fix rdar://6097892 - gcc incompat: clang rejects __func__, __FUNCTION__, and __PRETTY_FUNCTION__ outside func by Chris Lattner · 16 years ago
  89. cd08707 Implement rdar://6138816 - [sema] named bitfields cannot have 0 width by Chris Lattner · 16 years ago
  90. c9467cf In C++, set the type of each of the enumerators in an enumeration to by Douglas Gregor · 16 years ago
  91. f62e14d add annotation by Chris Lattner · 16 years ago
  92. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  93. 5abfe2c Add another complex promotion test. by Anders Carlsson · 16 years ago
  94. 5b1f3f0 Make sure to promote expressions of the form (floating point + complex integer) correctly, to (complex floating point + complex floating point) by Anders Carlsson · 16 years ago
  95. caaf29a Added a warning when referencing an if's condition variable in the by Douglas Gregor · 16 years ago
  96. bc76dd0 The "real" fix for <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  97. 2988205 Fix PR clang/3175: CheckAddressOfOperand does not handle references to class vars by Douglas Gregor · 16 years ago
  98. 4e78fd0 Fix <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  99. c0febd5 Fix <rdar://problem/6418623> Bogus block type compatibility warning. by Steve Naroff · 16 years ago
  100. 391d895 Patch to allow a getter call using property dot-syntax notation. by Fariborz Jahanian · 16 years ago