Peter Collingbourne | 915df99 | 2015-05-15 18:33:32 +0000 | [diff] [blame^] | 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 |