summaryrefslogtreecommitdiff
path: root/lib/msan
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2017-12-06 01:43:38 +0000
committerKamil Rytarowski <n54@gmx.com>2017-12-06 01:43:38 +0000
commit1f6d58da5ceafe918cb02645a727ada734bf17c2 (patch)
tree7f3994f78f81c72d57727a29d0a421c4182e6fc6 /lib/msan
parent4d7162ccfc83df44287abb7753d198d77ce22e5a (diff)
Fix typo gcvr -> gcvt and attempt to unbreak MSan/!NetBSD
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@319871 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/msan')
-rw-r--r--lib/msan/msan_interceptors.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msan/msan_interceptors.cc b/lib/msan/msan_interceptors.cc
index 19bc6ffa1..d04db99ae 100644
--- a/lib/msan/msan_interceptors.cc
+++ b/lib/msan/msan_interceptors.cc
@@ -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