1 // RUN: %clang_cc1 %s -emit-llvm -fsanitize=address -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 } 8 @end 9