[compiler-rt] r319871 - Fix typo gcvr -> gcvt and attempt to unbreak MSan/!NetBSD
Kamil Rytarowski via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 5 17:43:39 PST 2017
Author: kamil
Date: Tue Dec 5 17:43:38 2017
New Revision: 319871
URL: http://llvm.org/viewvc/llvm-project?rev=319871&view=rev
Log:
Fix typo gcvr -> gcvt and attempt to unbreak MSan/!NetBSD
Modified:
compiler-rt/trunk/lib/msan/msan_interceptors.cc
Modified: compiler-rt/trunk/lib/msan/msan_interceptors.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/msan/msan_interceptors.cc?rev=319871&r1=319870&r2=319871&view=diff
==============================================================================
--- compiler-rt/trunk/lib/msan/msan_interceptors.cc (original)
+++ compiler-rt/trunk/lib/msan/msan_interceptors.cc Tue Dec 5 17:43:38 2017
@@ -351,7 +351,7 @@ INTERCEPTOR(char *, gcvt, double number,
__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
More information about the llvm-commits
mailing list