liuliu added a comment.

We don't use PCH :) I arc patched the latest diff, still have that crash. More 
strangely, I tried this latest diff on previously simplistic test case and it 
crashes now:

  #import <Foundation/Foundation.h>
  
  @interface SCTestMainEntity : NSObject
  
  @property (nonatomic, readonly, direct) int date;
  
  - (instancetype)initWithDate:(int)date;
  
  @end
  
  int main(void)
  {
      SCTestMainEntity *entity = [[SCTestMainEntity alloc] initWithDate:10];
      printf("%d\n", entity.date);
      return 0;
  }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D71091/new/

https://reviews.llvm.org/D71091



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to