summaryrefslogtreecommitdiffstats
path: root/compiler-rt
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-10-14 13:30:40 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-10-14 13:30:40 +0000
commit7d7768e03289f73dd21a1fa761327f5d184ebfa7 (patch)
tree654d2a97e389a88e4b78f8a8c733296c8082b5d8 /compiler-rt
parent53169762d0bd7bc50582659f14f3e9a9e4999a0d (diff)
downloadbcm5719-llvm-7d7768e03289f73dd21a1fa761327f5d184ebfa7.tar.gz
bcm5719-llvm-7d7768e03289f73dd21a1fa761327f5d184ebfa7.zip
[msan] Remove a long-outdated comment.
llvm-svn: 192592
Diffstat (limited to 'compiler-rt')
-rw-r--r--compiler-rt/lib/msan/msan_interceptors.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/compiler-rt/lib/msan/msan_interceptors.cc b/compiler-rt/lib/msan/msan_interceptors.cc
index ec1de679c3f..932d58f4be3 100644
--- a/compiler-rt/lib/msan/msan_interceptors.cc
+++ b/compiler-rt/lib/msan/msan_interceptors.cc
@@ -569,28 +569,6 @@ INTERCEPTOR(double, wcstod, const wchar_t *nptr, wchar_t **endptr) {
return res;
}
-// #define UNSUPPORTED(name) \
-// INTERCEPTOR(void, name, void) { \
-// Printf("MSAN: Unsupported %s\n", __FUNCTION__); \
-// Die(); \
-// }
-
-// FIXME: intercept the following functions:
-// Note, they only matter when running without a dynamic tool.
-// UNSUPPORTED(wcscoll_l)
-// UNSUPPORTED(wcsnrtombs)
-// UNSUPPORTED(wcstol)
-// UNSUPPORTED(wcstoll)
-// UNSUPPORTED(wcstold)
-// UNSUPPORTED(wcstoul)
-// UNSUPPORTED(wcstoull)
-// UNSUPPORTED(wcsxfrm_l)
-// UNSUPPORTED(wcsdup)
-// UNSUPPORTED(wcsftime)
-// UNSUPPORTED(wcsstr)
-// UNSUPPORTED(wcsrchr)
-// UNSUPPORTED(wctob)
-
INTERCEPTOR(int, gettimeofday, void *tv, void *tz) {
ENSURE_MSAN_INITED();
int res = REAL(gettimeofday)(tv, tz);
OpenPOWER on IntegriCloud