We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abde59f commit 396e885Copy full SHA for 396e885
build-aux/m4/bitcoin_secp.m4
@@ -50,10 +50,14 @@ AC_MSG_CHECKING(whether MemorySanitizer is enabled)
50
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
51
#if defined(__has_feature)
52
# if __has_feature(memory_sanitizer)
53
- # error "MemorySanitizer is enabled."
+ /* MemorySanitizer is enabled. */
54
+ # elif
55
+ # error "MemorySanitizer is disabled."
56
# endif
57
+ #else
58
+ # error "__has_feature is not defined."
59
#endif
- ]])], [msan_enabled=no], [msan_enabled=yes])
60
+ ]])], [msan_enabled=yes], [msan_enabled=no])
61
AC_MSG_RESULT([$msan_enabled])
62
])
63
0 commit comments