summaryrefslogtreecommitdiff
path: root/test/ARCMT/GC-check-warn-nsalloc.m
blob: 44ccc95e3f7ce29355bc550cf9eef8e3674a7f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -arcmt-check -no-ns-alloc-error -triple x86_64-apple-darwin10 -fobjc-gc-only %s 2>&1 | grep 'warning: \[rewriter\] call returns pointer to GC managed memory'
// RUN: %clang_cc1 -arcmt-check -no-ns-alloc-error -triple x86_64-apple-darwin10 -fobjc-gc-only -x objective-c++ %s 2>&1 | grep 'warning: \[rewriter\] call returns pointer to GC managed memory'
// TODO: Investigate VerifyDiagnosticConsumer failures on these tests when using -verify.
// rdar://10532541

typedef unsigned NSUInteger;
void *__strong NSAllocateCollectable(NSUInteger size, NSUInteger options);

void test1() {
  NSAllocateCollectable(100, 0);
}