repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
no-sanitize.m
blob
abaf6fab26ab618e178533fa7e4f1e777bf3b041
1
// RUN: %clang_cc1 %s -emit-llvm -fsanitize=address -fblocks -o - | FileCheck %s
2
3
@interface I0 @end
4
@implementation I0
5
// CHECK-NOT: sanitize_address
6
- (void) im0: (int) a0 __attribute__((no_sanitize("address"))) {
7
int (^blockName)(void) = ^int(void) { return 0; };
8
}
9
@end