f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
33 lines
935 B
Text
33 lines
935 B
Text
// RUN: %clang_cc1 -E %s -o %t.m
|
|
// RUN: %clang_cc1 -fblocks -rewrite-objc -fms-extensions %t.m -o %t-rw.cpp
|
|
// RUN: FileCheck --input-file=%t-rw.cpp %s
|
|
// RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
|
|
|
|
@interface NSURLResponse {
|
|
@public
|
|
NSURLResponse *InnerResponse;
|
|
}
|
|
@end
|
|
|
|
@interface NSCachedURLResponseInternal
|
|
{
|
|
@public
|
|
NSURLResponse *response;
|
|
}
|
|
@end
|
|
|
|
@interface NSCachedURLResponse
|
|
{
|
|
@private
|
|
NSCachedURLResponseInternal *_internal;
|
|
}
|
|
- (void) Meth;
|
|
@end
|
|
|
|
@implementation NSCachedURLResponse
|
|
- (void) Meth {
|
|
_internal->response->InnerResponse = 0;
|
|
}
|
|
@end
|
|
|
|
// CHECK: (*(NSURLResponse **)((char *)(*(NSURLResponse **)((char *)(*(NSCachedURLResponseInternal **)((char *)self + OBJC_IVAR_$_NSCachedURLResponse$_internal)) + OBJC_IVAR_$_NSCachedURLResponseInternal$response)) + OBJC_IVAR_$_NSURLResponse$InnerResponse)) = 0;
|