diff options
author | Devin Coughlin <dcoughlin@apple.com> | 2015-11-03 19:38:03 +0000 |
---|---|---|
committer | Devin Coughlin <dcoughlin@apple.com> | 2015-11-03 19:38:03 +0000 |
commit | 6bc780ccc0baffb6d05b6bd9bfb51e3fb9596b84 (patch) | |
tree | e7bbf72330ea318a6446c6ecfc0d61f91dca6f8e /clang/test | |
parent | 255787a969bda0d0e29a2b504ea92e5451d0fc9a (diff) | |
download | bcm5719-llvm-6bc780ccc0baffb6d05b6bd9bfb51e3fb9596b84.tar.gz bcm5719-llvm-6bc780ccc0baffb6d05b6bd9bfb51e3fb9596b84.zip |
[analyzer] Move the ObjCGenericsChecker out of the alpha package.
It is now in the osx.cocoa package and so will be on by default for Apple
toolchains.
llvm-svn: 251966
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/Analysis/DynamicTypePropagation.m | 2 | ||||
-rw-r--r-- | clang/test/Analysis/generics.m | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Analysis/DynamicTypePropagation.m b/clang/test/Analysis/DynamicTypePropagation.m index efba471f52a..79ef37c794d 100644 --- a/clang/test/Analysis/DynamicTypePropagation.m +++ b/clang/test/Analysis/DynamicTypePropagation.m @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.osx.cocoa.ObjCGenerics -verify %s +// RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.cocoa.ObjCGenerics -verify %s #if !__has_feature(objc_generics) # error Compiler does not support Objective-C generics? diff --git a/clang/test/Analysis/generics.m b/clang/test/Analysis/generics.m index 4d4fb1005e9..b64d06935d9 100644 --- a/clang/test/Analysis/generics.m +++ b/clang/test/Analysis/generics.m @@ -1,5 +1,5 @@ -// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.osx.cocoa.ObjCGenerics,alpha.core.DynamicTypeChecker -verify -Wno-objc-method-access %s -// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.osx.cocoa.ObjCGenerics,alpha.core.DynamicTypeChecker -verify -Wno-objc-method-access %s -analyzer-output=plist -o %t.plist +// RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.cocoa.ObjCGenerics,alpha.core.DynamicTypeChecker -verify -Wno-objc-method-access %s +// RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.cocoa.ObjCGenerics,alpha.core.DynamicTypeChecker -verify -Wno-objc-method-access %s -analyzer-output=plist -o %t.plist // RUN: FileCheck --input-file %t.plist %s #if !__has_feature(objc_generics) |