[RISCV][FMV] Support target_clones (#85786)
[llvm-project.git] / clang / test / CodeGenObjC / 2009-01-26-WriteBarrier-2.m
blobe6bc7b13a221bc4be211cdf00929153e4fa5d822
1 // RUN: %clang_cc1 -fblocks -emit-llvm %s -fobjc-gc -o - | FileCheck %s
3 // CHECK: objc_assign_strongCast
5 typedef __SIZE_TYPE__ size_t;
6 void * malloc(size_t size);
8 typedef struct {
9     void (^ivarBlock)(void);
10 } StructWithBlock_t;
12 int main(int argc, char *argv[]) {
13    StructWithBlock_t *swbp = (StructWithBlock_t *)malloc(sizeof(StructWithBlock_t*));
14    __block   int i = 10;
15    // assigning a Block into an struct slot should elicit a write-barrier under GC
16    swbp->ivarBlock = ^ { ++i; };
17    return 0;