aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/check-for-sanitizer-feature/check.h
blob: 74b4628d1230a2f0d4f1aaf9d92f8f3c778b8629 (plain) (blame)
1
2
3
4
5
#if __has_feature(address_sanitizer)
#define HAS_ASAN 1
#else
#define HAS_ASAN 0
#endif