blob: 39f8575670d5b97641d18e972013de940f4e2d9e [file] [log] [blame]
Peter Collingbourne915df992015-05-15 18:33:32 +00001// 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