mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
e9492f7239
Rewriter tests rewrite Objective-C++ to C++, and then compile the result. The rewritten result sometimes doesn't work with C++11. As we want to allow Clang's default dialect to become C++11, we need to make sure the tests will still pass. llvm-svn: 289167
34 lines
948 B
Plaintext
34 lines
948 B
Plaintext
// 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 -std=gnu++98 -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;
|