Use the reserved spellings for attributes

Change the no_sanitize attribute to use the reserved spelling.

llvm-svn: 260195
This commit is contained in:
Saleem Abdulrasool 2016-02-09 04:05:37 +00:00
parent f5f2f5f159
commit 38fc9fe197
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ namespace std {
// Allow for build-time disabling of unsigned integer sanitization
#if !defined(_LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK) && __has_attribute(no_sanitize)
#define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK __attribute((no_sanitize("unsigned-integer-overflow")))
#define _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK __attribute__((__no_sanitize__("unsigned-integer-overflow")))
#endif
#elif defined(__GNUC__)