[msan] Remove a long-outdated comment.

llvm-svn: 192592
This commit is contained in:
Evgeniy Stepanov 2013-10-14 13:30:40 +00:00
parent 53169762d0
commit 7d7768e032
1 changed files with 0 additions and 22 deletions

View File

@ -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);