Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / no-sanitize.m
blobabaf6fab26ab618e178533fa7e4f1e777bf3b041
1 // RUN: %clang_cc1 %s -emit-llvm -fsanitize=address -fblocks -o - | FileCheck %s
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; };
9 @end