re-enable unittest
authorDylan Noblesmith <nobled@dreamwidth.org>
Mon, 12 Dec 2011 04:20:41 +0000 (04:20 +0000)
committerDylan Noblesmith <nobled@dreamwidth.org>
Mon, 12 Dec 2011 04:20:41 +0000 (04:20 +0000)
Accidentally left out since r145214/r145217.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146356 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/VMCore/ValueMapTest.cpp

index b4939208e7d490dc85cb2d77ce363ae3cf9f85f1..9bed37dff33ebd8569e623023ddc7c3ecb25cdd8 100644 (file)
@@ -12,7 +12,7 @@
 #include "llvm/Instructions.h"
 #include "llvm/LLVMContext.h"
 #include "llvm/ADT/OwningPtr.h"
-#include "llvm/Config/config.h"
+#include "llvm/Config/llvm-config.h"
 
 #include "gtest/gtest.h"
 
@@ -195,7 +195,7 @@ struct LockMutex : ValueMapConfig<KeyT> {
   }
   static sys::Mutex *getMutex(const ExtraData &Data) { return Data.M; }
 };
-#if ENABLE_THREADS
+#if LLVM_ENABLE_THREADS
 TYPED_TEST(ValueMapTest, LocksMutex) {
   sys::Mutex M(false);  // Not recursive.
   bool CalledRAUW = false, CalledDeleted = false;