1. 0b74891 PCH support for a few very, very simple kinds of expressions. Hook up by Douglas Gregor · 15 years ago
  2. b6645dd Fix a regression in a previous patch that broke implicit by Chris Lattner · 15 years ago
  3. 1fc5194 Fix <rdar://problem/6252084> [sema] jumps into Obj-C exception blocks should be disallowed. by Steve Naroff · 15 years ago
  4. cbb8fc1 Fix PR3988: extern inline functions get strong symbol definitions in by Chris Lattner · 15 years ago
  5. 2417ef7 Add a tricky, tricky test case for PCH that we currently don't handle. Committed with a FIXME so that we don't forget it by Douglas Gregor · 15 years ago
  6. c519743 implement some sema for gnuc_inline attribute. Reject always_inline and no_inline on objc methods. by Chris Lattner · 15 years ago
  7. 86daeee implement codegen support for __attribute((__gnuc_inline__)), by Chris Lattner · 15 years ago
  8. f807fe0 When building a PCH file, don't perform end-of-translation-unit by Douglas Gregor · 15 years ago
  9. d824c9c ASTContext::mergeTypes(): Loosen up the type checking for 'Class' (treating it like 'id'). by Steve Naroff · 15 years ago
  10. dbb5a37 defer emission of always_inline, extern_inline, and inline functions (when by Chris Lattner · 15 years ago
  11. d9d049a set the linkage of an inline function according to its language rules. by Chris Lattner · 15 years ago
  12. 5466c7b Audit __private_extern__ handling. by Daniel Dunbar · 15 years ago
  13. f33651c Fixup CodeGen for __weak __block variables. Radar 6756266 by Mike Stump · 15 years ago
  14. fdd0172 When writing a PCH file, keep track of all of the non-static, by Douglas Gregor · 15 years ago
  15. ab76d45 Fix crasher in ASTContext::getObjCEncodingForMethodDecl(). by Steve Naroff · 15 years ago
  16. 3a2f7e4 PCH support for functions and their parameters. by Douglas Gregor · 15 years ago
  17. a31feca PR3461: reject initializer for incomplete type. Based on patch by Tim by Eli Friedman · 15 years ago
  18. 8c70006 PCH support for record decls/types and their fields. Now that we can by Douglas Gregor · 15 years ago
  19. b4e715b Introduce PCH (de-)serialization for most compound types, excluding by Douglas Gregor · 15 years ago
  20. 29da66e In objc2's None-Fragile ABI, one cannot use the super class ivar for by Fariborz Jahanian · 15 years ago
  21. aa4a756 Fixed crasher in <rdar://problem/6780904> [irgen] Assertion failed: (Result == conversionOK && "UTF-8 to UTF-16 conversion failed"), function GetAddrOfConstantCFString, file CodeGenModule.cpp, line 1063. by Steve Naroff · 15 years ago
  22. 0a2b45e Add PCH support for enumerations and enumerators. by Douglas Gregor · 15 years ago
  23. 283a062 Use the new guard variable mangling function and get rid of the old code. by Anders Carlsson · 15 years ago
  24. 8745416 Change diagnostic as a result of researching <rdar://problem/6779809> missing interface name in "error: cannot declare variable inside a class, protocol or category ''. by Steve Naroff · 15 years ago
  25. bd94500 Include the SourceManager's line table in the PCH file. We can now by Douglas Gregor · 15 years ago
  26. 841b53c Make the selection of type declarations in Sema::getTypeName by Douglas Gregor · 15 years ago
  27. ecca753 fix rdar://6774906, a crash handling implicit conversions between pointers by Chris Lattner · 15 years ago
  28. c1f9d82 implement the microsoft/gnu "__COUNTER__" macro: rdar://4329310 by Chris Lattner · 15 years ago
  29. 1721a2d Improve error recovery for calls, fixing: by Chris Lattner · 15 years ago
  30. 16ede0e fix PR3932: [ObjC]Type defined as 'id' is not recognized as a valid object type. by Chris Lattner · 15 years ago
  31. d0c649f rename test by Chris Lattner · 15 years ago
  32. aec2002 add some more coverage. by Chris Lattner · 15 years ago
  33. d07f54f clean up test. by Chris Lattner · 15 years ago
  34. 94ad08d rename test by Chris Lattner · 15 years ago
  35. 93c4945 if we already know that a decl is invalid in an @catch, don't verify its type. by Chris Lattner · 15 years ago
  36. 8129edb Fix some C++ error recovery problems in init declarator parsing by Chris Lattner · 15 years ago
  37. 6491f47 fix another case that assumed that GetTypeForDeclarator would never return null. by Chris Lattner · 15 years ago
  38. 33c6ebe mark the declspec as invalid when we recover instead of forcing to int, by Chris Lattner · 15 years ago
  39. 4c97d76 Diagnose invalid uses of tagged types with a missing tag. For example, in: by Chris Lattner · 15 years ago
  40. 5186872 fix a valgrind problem I noticed while developing another patch, by Chris Lattner · 15 years ago
  41. c199ab3 Implement the first set of changes for PR3963 and rdar://6759604, by Chris Lattner · 15 years ago
  42. ef4b175 OS dependent code removed. by Fariborz Jahanian · 15 years ago
  43. 0b5e7fb Add deleted functions and rvalue references to C++ status. by Sebastian Redl · 15 years ago
  44. e2b6833 Parse deleted member functions. Parsing member declarations goes through a different code path that I forgot previously. by Sebastian Redl · 15 years ago
  45. 36dc958 rename test by Chris Lattner · 15 years ago
  46. 2c4463f Fix rdar://6770142 - Class and qualified id's are compatible, just like by Chris Lattner · 15 years ago
  47. 34f2435 rename test by Chris Lattner · 15 years ago
  48. 9257db5 merge protocol-test-1.m -> protocol-test-2.m by Chris Lattner · 15 years ago
  49. a2b4d65 Merge forward-circular into protocol-test-2 by Chris Lattner · 15 years ago
  50. e2ac07a this test is subsumed by protocol-test-2.m by Chris Lattner · 15 years ago
  51. 58fe03b Fix rdar://6771034: don't warn on use of forward declared protocol in protocol by Chris Lattner · 15 years ago
  52. cf70641 fix typo in test name. by Chris Lattner · 15 years ago
  53. 05af262 call objc interfaces just "interfaces" in diagnostics, not "Objective-C types" by Chris Lattner · 15 years ago
  54. 312531a implement rdar://6780761, making sema reject some code that otherwise by Chris Lattner · 15 years ago
  55. d82df3a Implement support for GCC's -dD mode, which dumps -E output *and* by Chris Lattner · 15 years ago
  56. 7356a31 now that we have an identifier table in the PCH file, finish hooking up by Chris Lattner · 15 years ago
  57. 285d03f test this in non-pch mode as well as in pch mode. by Chris Lattner · 15 years ago
  58. 3aff919 improve the 'conflicting types' diagnostics to include correct location info, now by Chris Lattner · 15 years ago
  59. 273cd42 pass -fblocks by Chris Lattner · 15 years ago
  60. 9097af1 fix blocks to reject objc interfaces returned by value. Also, by Chris Lattner · 15 years ago
  61. 30bdc87 fix test by Chris Lattner · 15 years ago
  62. bb74982 diagnose attempts to return objc interfaces by-value from C functions. by Chris Lattner · 15 years ago
  63. 2dd979f Improve the 'cannot pass objc interface by value' diagnostic: by Chris Lattner · 15 years ago
  64. 140fb26 Fixes a ir-gen crash for K&R style blocks. by Fariborz Jahanian · 15 years ago
  65. 73f35e6 add radar number by Chris Lattner · 15 years ago
  66. 1e5dc6e Add support for generating reference initialization code. by Anders Carlsson · 15 years ago
  67. b3bf76f Add analyzer support for objc_atomicCompareAndSwap() by Ted Kremenek · 15 years ago
  68. 1670e40 Implement analyzer support for OSCompareAndSwap. This required pushing "tagged" by Ted Kremenek · 15 years ago
  69. c211218 Non-pointer objects are none gc'able regardles of the attribute set on them. by Fariborz Jahanian · 15 years ago
  70. c0c0ef0 Fixup copy/dispose helpers for Objective-C. Radar 6756504 by Mike Stump · 15 years ago
  71. 38ac063 Force driver triple. by Daniel Dunbar · 15 years ago
  72. 0a9217f Fix another fallout from defining __weak unconditionally. by Fariborz Jahanian · 15 years ago
  73. 64c2e07 Don't set both readnone and readonly. by Daniel Dunbar · 15 years ago
  74. 531cc83 do a dance with predefines, and finally enable reading of macros from by Chris Lattner · 15 years ago
  75. 4789282 Fixed the test. by Fariborz Jahanian · 15 years ago
  76. 2b93986 Add a test case for my last patch. by Fariborz Jahanian · 15 years ago
  77. 02022f4 Force triple for a number of tests that rely on __weak. by Daniel Dunbar · 15 years ago
  78. f36a06a Honor MACOSX_DEPLOYMENT_TARGET environment variable. by Daniel Dunbar · 15 years ago
  79. 7e714cd Internal variables could mistakenly have "hidden" visibility when by Daniel Dunbar · 15 years ago
  80. c7a4ba5 Test case for -miphoneos-version-min, also part of Shantonu's patch! by Daniel Dunbar · 15 years ago
  81. b7477cf Fixup codegen for nested blocks that use copy/dispose in the inner by Mike Stump · 15 years ago
  82. 960cd06 Patch to generate meta-data for prtocol used in @protocol expression. by Fariborz Jahanian · 15 years ago
  83. 8038d51 Various minor fixes to PCH reading and writing, with general by Douglas Gregor · 15 years ago
  84. 4fa37ac use doug's new %S thing to make this work when run from different locations. by Chris Lattner · 15 years ago
  85. 3a0fd13 Split failing test case from misc-ps.m to misc-ps-ranges.m (which tests by Ted Kremenek · 15 years ago
  86. 14f7900 PCH serialization/deserialization of the source manager. With this by Douglas Gregor · 15 years ago
  87. 52e5602 Fix: <rdar://problem/6776949> Branch condition evaluates to an uninitialized value (argc is guaranteed to be >= 1) by Ted Kremenek · 15 years ago
  88. b725232 Implement attribute "analyzer_noreturn" (<rdar://problem/6777003>). This allows by Ted Kremenek · 15 years ago
  89. 2cf2634 Implementation of pre-compiled headers (PCH) based on lazy by Douglas Gregor · 15 years ago
  90. c612f7b Add @encode support for complex types. by Anders Carlsson · 15 years ago
  91. 7a0048b Add more builtin definitions, including strcmp. - PR3964. by Daniel Dunbar · 15 years ago
  92. fe630b9 GRExprEngine: Don't try to reason about the size of 'void' for the return type by Ted Kremenek · 15 years ago
  93. c21c485 Driver: Split out CPP specific options for clang so that we don't end by Daniel Dunbar · 15 years ago
  94. a0c3e9c Fix <rdar://problem/6770998> make cast of super illegal (again:-) by Steve Naroff · 15 years ago
  95. 748dd20 Force triple for these tests. by Daniel Dunbar · 15 years ago
  96. fd10511 finish the implementation of -imacros. The driver still needs to be hooked up. by Chris Lattner · 15 years ago
  97. e9918d2 We weren't generating correct code for calls to variadic member functions. by Anders Carlsson · 15 years ago
  98. d286992 Fixed a problem using property syntax on a 'super' used as receiver. by Fariborz Jahanian · 15 years ago
  99. da9ae60 Enhance analyzer reasoning about sending messages to nil. A nil receiver returns 0 for scalars of size <= sizeof(void*). by Ted Kremenek · 15 years ago
  100. 3bbc753 More fixes to builtin preprocessor defines. by Daniel Dunbar · 15 years ago