[ELF] Avoid make in elf::writeARMCmseImportLib
[llvm-project.git] / clang / test / Analysis / bug_hash_test.m
blob1510c12a0ab8dbab8ee68bd751bc91a4bee3c31a
1 // RUN: %clang_analyze_cc1 -fblocks -analyzer-checker=core,debug.ExprInspection %s -verify
3 void clang_analyzer_hashDump(int);
5 @protocol NSObject
6 + (id)alloc;
7 - (id)init;
8 @end
10 @protocol NSCopying
11 @end
13 __attribute__((objc_root_class))
14 @interface NSObject <NSObject>
15 - (void)method:(int)arg param:(int)arg2;
16 @end
18 @implementation NSObject
19 + (id)alloc {
20   return 0;
22 - (id)init {
23   return self;
25 - (void)method:(int)arg param:(int)arg2 {
26   clang_analyzer_hashDump(5); // expected-warning {{debug.ExprInspection$NSObject::method:param:$27$clang_analyzer_hashDump(5);$Category}}
28 @end
31 void testBlocks(void) {
32   int x = 5;
33   ^{
34     clang_analyzer_hashDump(x); // expected-warning {{debug.ExprInspection$$29$clang_analyzer_hashDump(x);$Category}}
35   }();