[compiler-rt] r319872 - Fix typo fcvr -> fcvt and attempt to unbreak MSan/!NetBSD

Kamil Rytarowski via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 5 17:44:41 PST 2017


Author: kamil
Date: Tue Dec  5 17:44:41 2017
New Revision: 319872

URL: http://llvm.org/viewvc/llvm-project?rev=319872&view=rev
Log:
Fix typo fcvr -> fcvt 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=319872&r1=319871&r2=319872&view=diff
==============================================================================
--- compiler-rt/trunk/lib/msan/msan_interceptors.cc (original)
+++ compiler-rt/trunk/lib/msan/msan_interceptors.cc Tue Dec  5 17:44:41 2017
@@ -624,7 +624,7 @@ INTERCEPTOR(char *, fcvt, double x, int
   if (res) __msan_unpoison(res, REAL(strlen)(res) + 1);
   return res;
 }
-#define MSAN_MAYBE_INTERCEPT_FCVT INTERCEPT_FUNCTION(fcvr)
+#define MSAN_MAYBE_INTERCEPT_FCVT INTERCEPT_FUNCTION(fcvt)
 #else
 #define MSAN_MAYBE_INTERCEPT_FCVT
 #endif




More information about the llvm-commits mailing list