]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGenObjC/no-sanitize.m
Vendor import of clang trunk r238337:
[FreeBSD/FreeBSD.git] / test / CodeGenObjC / no-sanitize.m
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