aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/LeakDetector.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-08-19 00:37:02 +0000
committerOwen Anderson <resistor@mac.com>2009-08-19 00:37:02 +0000
commit3587bdbdb8100d8f22fa8013374cd46cb11db472 (patch)
tree24c44eff556d950b06fac6a988cea428bc1a3a47 /include/llvm/Support/LeakDetector.h
parent4855bfda9b027c8fc41d2440f0eb5873fe0e6052 (diff)
downloadexternal_llvm-3587bdbdb8100d8f22fa8013374cd46cb11db472.zip
external_llvm-3587bdbdb8100d8f22fa8013374cd46cb11db472.tar.gz
external_llvm-3587bdbdb8100d8f22fa8013374cd46cb11db472.tar.bz2
Privatize part of the leak detector mechanism, which turned out to be heavily contended
when trying to run opt in parallel. This lets parallel opt crunch 403.gcc in about a third of the time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79387 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/LeakDetector.h')
-rw-r--r--include/llvm/Support/LeakDetector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Support/LeakDetector.h b/include/llvm/Support/LeakDetector.h
index 8d74ac6..7dbfdbf 100644
--- a/include/llvm/Support/LeakDetector.h
+++ b/include/llvm/Support/LeakDetector.h
@@ -56,9 +56,9 @@ struct LeakDetector {
/// The specified message will be printed indicating when the check was
/// performed.
///
- static void checkForGarbage(const std::string &Message) {
+ static void checkForGarbage(LLVMContext &C, const std::string &Message) {
#ifndef NDEBUG
- checkForGarbageImpl(Message);
+ checkForGarbageImpl(C, Message);
#endif
}
@@ -83,7 +83,7 @@ private:
static void removeGarbageObjectImpl(const Value *Object);
static void addGarbageObjectImpl(void *Object);
static void removeGarbageObjectImpl(void *Object);
- static void checkForGarbageImpl(const std::string &Message);
+ static void checkForGarbageImpl(LLVMContext &C, const std::string &Message);
};
} // End llvm namespace