Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / Rewriter / rewrite-constructor-init.mm
blobc13dcc5d5b42a6d63a989110ee4fc736a6127a3a
1 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
4 typedef unsigned int NSUInteger;
6 typedef struct _NSRange {
7     NSUInteger location;
8     NSUInteger length;
9 } NSRange;
11 static __inline NSRange NSMakeRange(NSUInteger loc, NSUInteger len) {
12     NSRange r;
13     r.location = loc;
14     r.length = len;
15     return r;
18 void bar() {
19     __block NSRange previousRange = NSMakeRange(0, 0);    
20     void (^blk)() = ^{
21         previousRange = NSMakeRange(1, 0);
22     };