mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-27 21:53:56 +00:00
Fix build breakage caused by change to ValueMapTest.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211083 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0dee67560f
commit
4072aa3649
@ -180,7 +180,7 @@ TYPED_TEST(ValueMapTest, ConfiguredCollisionBehavior) {
|
||||
template<typename KeyT, typename MutexT>
|
||||
struct LockMutex : ValueMapConfig<KeyT, MutexT> {
|
||||
struct ExtraData {
|
||||
mutex_type *M;
|
||||
MutexT *M;
|
||||
bool *CalledRAUW;
|
||||
bool *CalledDeleted;
|
||||
};
|
||||
@ -192,7 +192,7 @@ struct LockMutex : ValueMapConfig<KeyT, MutexT> {
|
||||
*Data.CalledDeleted = true;
|
||||
EXPECT_FALSE(Data.M->tryacquire()) << "Mutex should already be locked.";
|
||||
}
|
||||
static mutex_type *getMutex(const ExtraData &Data) { return Data.M; }
|
||||
static MutexT *getMutex(const ExtraData &Data) { return Data.M; }
|
||||
};
|
||||
#if LLVM_ENABLE_THREADS
|
||||
TYPED_TEST(ValueMapTest, LocksMutex) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user