aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Valgrind.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Support/Valgrind.cpp')
-rw-r--r--llvm/lib/Support/Valgrind.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/lib/Support/Valgrind.cpp b/llvm/lib/Support/Valgrind.cpp
index 886cb6ba3311..3cf41faeb55d 100644
--- a/llvm/lib/Support/Valgrind.cpp
+++ b/llvm/lib/Support/Valgrind.cpp
@@ -19,26 +19,11 @@
#if HAVE_VALGRIND_VALGRIND_H
#include <valgrind/valgrind.h>
-static bool InitNotUnderValgrind() {
- return !RUNNING_ON_VALGRIND;
-}
-
-// This bool is negated from what we'd expect because code may run before it
-// gets initialized. If that happens, it will appear to be 0 (false), and we
-// want that to cause the rest of the code in this file to run the
-// Valgrind-provided macros.
-static const bool NotUnderValgrind = InitNotUnderValgrind();
-
bool llvm::sys::RunningOnValgrind() {
- if (NotUnderValgrind)
- return false;
return RUNNING_ON_VALGRIND;
}
void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) {
- if (NotUnderValgrind)
- return;
-
VALGRIND_DISCARD_TRANSLATIONS(Addr, Len);
}