Fix typo gcvr -> gcvt and attempt to unbreak MSan/!NetBSD

llvm-svn: 319871
This commit is contained in:
Kamil Rytarowski 2017-12-06 01:43:38 +00:00
parent 8122ca92c8
commit b6778ff9d2
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ INTERCEPTOR(char *, gcvt, double number, SIZE_T ndigit, char *buf) {
__msan_unpoison(buf, n + 1);
return res;
}
#define MSAN_MAYBE_INTERCEPT_GCVT INTERCEPT_FUNCTION(gcvr)
#define MSAN_MAYBE_INTERCEPT_GCVT INTERCEPT_FUNCTION(gcvt)
#else
#define MSAN_MAYBE_INTERCEPT_GCVT
#endif