[RISCV] Match vcompress during shuffle lowering (#117748)
[llvm-project.git] / clang / test / CodeGenObjC / objc2-no-strong-cast.m
blob0824f4086537a80dddc4660126ec90e17e9c14a6
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
3 @interface PDFViewPrivateVars 
5 @public
6         __attribute__((objc_gc(strong))) char *addedTooltips;
8 @end
10 @interface PDFView 
12     PDFViewPrivateVars *_pdfPriv;
14 @end
16 @implementation PDFView
17 - (void) addTooltipsForPage
19  _pdfPriv->addedTooltips[4] = 1;
21 @end