1. 13df6f6 Restore r147493 and remove the part of the test that was checking the wrong thing. by David Chisnall · 13 years ago
  2. e7aa27a When performing layout for an Objective-C class, make sure to dig out by Douglas Gregor · 13 years ago
  3. b29b92a Update tests to match r146744. by Devang Patel · 13 years ago
  4. 36370f5 Update tests to match r146665. by Devang Patel · 13 years ago
  5. b92e5d0 Fix an extremely stupid bug causing terrible miscompilations by John McCall · 13 years ago
  6. d5a3b78 Make sure that forward declarations are marked as such in the debug info by Eric Christopher · 13 years ago
  7. 155fa39 The optimizers figured out how to make this store 6. by Nick Lewycky · 13 years ago
  8. 567c586 In ARC, don't reclaim objects of Class type. by John McCall · 13 years ago
  9. 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 · 13 years ago
  10. 6f103ba Whenever explicitly activating or deactivating a cleanup, we by John McCall · 13 years ago
  11. b99785b Fix a subtle bug with cleanups: when activating by John McCall · 13 years ago
  12. 1a343eb Enter the cleanups for a block outside the enclosing by John McCall · 13 years ago
  13. a59e4b7 Emit the copy and dipose helpers for ARC __strong by John McCall · 13 years ago
  14. 3382f65 Extract the blocks-related ARC tests into their own file. by John McCall · 13 years ago
  15. a5493f8 Bind function "r-values" as l-values when emitting them as by John McCall · 13 years ago
  16. 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 · 13 years ago
  17. 9c273ff Fix test for LLVM change r143186. by Nick Lewycky · 13 years ago
  18. 9c1ba40 objc: fix an ir-gen crash caused by recent by Fariborz Jahanian · 13 years ago
  19. 98a9203 Move these test from checking assembly to checking LLVM IR. Should fix fallout by Nick Lewycky · 13 years ago
  20. 6c29eda Objective-c: fix an ir-gen crash where objc messag returns a _Complex by Fariborz Jahanian · 13 years ago
  21. b9c8c42 Add block information for ObjC @catch blocks. by Eric Christopher · 13 years ago
  22. 88a4cfd Strip qualifiers off the type of an implicit property defined by only a setter. by John McCall · 13 years ago
  23. d1ab1a2 When constructing debug information for synthesized variables for the by Eric Christopher · 13 years ago
  24. 348f16f Mark calls to objc_retainBlock that don't result from casts by John McCall · 13 years ago
  25. d1e40d5 Make -fobjc-nonfragile-abi the -cc1 default, since it's the by John McCall · 13 years ago
  26. 2b014d6 When performing an @throw in ARC, retain + autorelease by John McCall · 13 years ago
  27. cdda47f Parse attributes written in an ObjC method parameter type as by John McCall · 13 years ago
  28. 2cf031d Allow the results of cf_returns_not_retained function by John McCall · 13 years ago
  29. ccae76c objc gc: assigning to an objc object struct member through an ivar by Fariborz Jahanian · 13 years ago
  30. e3f8349 objc-gc: Fix a corner case where clang fails to generate GC by Fariborz Jahanian · 13 years ago
  31. 285cfd8 Throw the switch to convert clang to the new exception handling model! by Bill Wendling · 13 years ago
  32. 8c6f9c4 Tighten check to match an ivar with corresponding property by using ObjCImplementationDecl. by Devang Patel · 13 years ago
  33. a45680b Correctly generate IR for casted "builtin" functions, where by John McCall · 13 years ago
  34. de24d44 Turn off the generation of unaligned atomic load/store; I'm going to explicitly error out on such cases in the backend, at least for the moment. by Eli Friedman · 13 years ago
  35. 6dc6f00 A strong property of block type has "copy" setter semantics, not "retain". by John McCall · 13 years ago
  36. c5d9a90 Don't use native atomics on ivars whose size is not a power of two, by John McCall · 13 years ago
  37. d6ce22c This test seems pretty low-value. by John McCall · 13 years ago
  38. 5889c60 Always emit bitfield properties using expression behavior, even if they're by John McCall · 13 years ago
  39. 1e1f487 Unify the decision of how to emit property getters and setters into a by John McCall · 13 years ago
  40. dc05b11 When converting a block pointer to an Objective-C pointer type, extend by John McCall · 13 years ago
  41. 5471bc8 Allow C++0x enumerations with a fixed underlying type in by Douglas Gregor · 13 years ago
  42. 4019f7d objc-gc: Adds support for "weak" property attribute under GC. by Fariborz Jahanian · 13 years ago
  43. 7be2f46 Remove XFAIL/XTARGET since this is passing on the other bots. by Eric Christopher · 13 years ago
  44. 89a179b Migrate, update and FileCheckize: by Eric Christopher · 13 years ago
  45. a1032cc Migrate, update and FileCheckize: by Eric Christopher · 13 years ago
  46. 7bc54e5 Migrate, FileCheckize and update: by Eric Christopher · 13 years ago
  47. c0b850c Add new test. Remove one outdated test. by Devang Patel · 13 years ago
  48. bc03aea objc-arc: @property definitions should default to (strong) when not by Fariborz Jahanian · 13 years ago
  49. 4b302d3 The continue label in an ARC for-in loop should not involve by John McCall · 13 years ago
  50. edc2220 This test still hangs on win32, despite XFAIL it. Remove XFAIL. by Ted Kremenek · 13 years ago
  51. c4688ce XFAIL arc.m codegen test on win32 because it is currently hanging. Need to investigate. by Ted Kremenek · 13 years ago
  52. bddfd87 Use the general conditional-cleanup framework instead of rolling our by John McCall · 13 years ago
  53. fc4b191 In ARC, don't try to reclaim the result of a call to performSelector by John McCall · 13 years ago
  54. fb72081 Fix a couple of problems with initialization and assignment to by John McCall · 13 years ago
  55. 0752403 The lock operand to an @synchronized statement is also by John McCall · 13 years ago
  56. 990567c Clean up the analysis of the collection operand to ObjC by John McCall · 13 years ago
  57. dc7c5ad Document the existing objc_precise_lifetime attribute. by John McCall · 13 years ago
  58. ba3dd90 In ARC, non-atomic getters do not need to retain and autorelease by John McCall · 13 years ago
  59. 6c2c250 In Objective-C, pull arbitrary attributes from overridden by John McCall · 13 years ago
  60. 40af63b Removes a comment. by Fariborz Jahanian · 13 years ago
  61. f2dd68f objc-arc: Fixes a crash @throw'ing an objc message. // pr10411 by Fariborz Jahanian · 13 years ago
  62. 799d34e Don't crash if defining -dealloc in a category. by John McCall · 13 years ago
  63. fbf780a Okay, that rule about zero-length arrays applies to destroying them, too. by John McCall · 13 years ago
  64. f96e904 In ARC mode, consider Objective-C lifetime types (object pointers and by Douglas Gregor · 13 years ago
  65. 9928c48 Switch field destruction over to use the new destroyer-based API by John McCall · 13 years ago
  66. 57eb23f keep track of whether being in a RS_StructPointer state by Chris Lattner · 13 years ago
  67. f0a8679 Fix the clang bootstrap and Jay's testcase from llvm-dev by being completely by Chris Lattner · 13 years ago
  68. 9cbe4f0 clang side to match the LLVM IR type system rewrite patch. by Chris Lattner · 13 years ago
  69. bdc4d80 A number of array-related IR-gen cleanups. by John McCall · 13 years ago
  70. 7e5e5f4 In ARC, reclaim all return values of retainable type, not just those by John McCall · 13 years ago
  71. 256a76e Call objc_terminate() instead of abort() when a cleanup throws an by John McCall · 13 years ago
  72. 9f084a3 Change the driver's logic about Objective-C runtimes: abstract out a by John McCall · 13 years ago
  73. 8fefc8e objc-arc: fix a IRGen crash when checking for by Fariborz Jahanian · 13 years ago
  74. 4027f09 Test case for r133840, neglectfully uncommitted. by John McCall · 13 years ago
  75. bc8d40d Change the IR-generation of VLAs so that we capture bounds, by John McCall · 13 years ago
  76. d768e9d Emit @finally blocks completely lazily instead of forcing their by John McCall · 13 years ago
  77. c8505ad objc-arc: Add support for unbridged cast of by Fariborz Jahanian · 13 years ago
  78. af97517 objc-arc: CodeGen part of unbridged cast of CF types. // rdar://9474349 by Fariborz Jahanian · 13 years ago
  79. 7acddac Objective-C fast enumeration loop variables are not retained in ARC, but by John McCall · 13 years ago
  80. 6c91615 For the purpose of @encode'ing, accept 'void' type by Fariborz Jahanian · 13 years ago
  81. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  82. 019edd8 Remote this unreliable test case because it did not do its job. by Devang Patel · 13 years ago
  83. 5a2675d These tests require particular registered targets. Declared as such. by Galina Kistanova · 13 years ago
  84. 0ccb31c These tests require particular registered targets. Declared as such. by Galina Kistanova · 13 years ago
  85. d65e091 Fix test, check for stable strings in the output. by Devang Patel · 13 years ago
  86. c478f21 List objective-c ineterfaces as public types in dwarf debug info output. by Devang Patel · 13 years ago
  87. 93c332a Convert Clang over to resuming from landing pads with llvm.eh.resume. by John McCall · 13 years ago
  88. addd80d Back out r132209; it's breaking nightly tests. by Eli Friedman · 13 years ago
  89. 0903421 Implement a new, much improved version of the cleanup hack. We just need by John McCall · 13 years ago
  90. f968d83 Objective-C doesn't consider the use of incomplete types as method by Douglas Gregor · 13 years ago
  91. 1ebb6f29 Test case for r131940. by Devang Patel · 13 years ago
  92. 8d3f897 Fix location of setter/getter synthesized for a property. by Devang Patel · 13 years ago
  93. 6f40e22 Patch to fix IR-gen crash generating structure ABI which implements by Fariborz Jahanian · 13 years ago
  94. 2636197 Reapply the commits that r131401 reverted and add a fix for PR9927. by Argyrios Kyrtzidis · 13 years ago
  95. 4ea0304 Revert 131377, 131369 and 131365. 131365 caused PR9927. by Rafael Espindola · 13 years ago
  96. 0c6f826 Fix generation of obj-c @encoding for members with zero size. by Argyrios Kyrtzidis · 13 years ago
  97. cba681a Only perform the null-initialization of an aggregate result of a message by John McCall · 13 years ago
  98. 02c5116 Create proper Objective-C @encoding for C++ classes; fixes rdar://9357400. by Argyrios Kyrtzidis · 13 years ago
  99. aad1609 Doug convinced me that DW_AT_APPLE_objc_complete_type is more appropriate name. by Devang Patel · 13 years ago
  100. f568b64 Do not add AT_APPLE_objc_class_extension attribute if @implementation is not seen. by Devang Patel · 13 years ago