From: Lang Hames Date: Sat, 6 Jan 2018 05:19:06 +0000 (+0000) Subject: [ORC] Fix the counter type on SymbolStringPool entries. X-Git-Tag: android-x86-7.1-r4~6570 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=be7a10d44be0835d3438c9f404f9474dad7c83f1;p=android-x86%2Fexternal-llvm.git [ORC] Fix the counter type on SymbolStringPool entries. Hopefully this will fix the build failure in http://lab.llvm.org:8011/builders/llvm-mips-linux/builds/3417 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@321926 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h b/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h index 2cbe2296855..914e2177b7d 100644 --- a/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h +++ b/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h @@ -36,7 +36,7 @@ public: /// @brief Returns true if the pool is empty. bool empty() const; private: - using RefCountType = std::atomic; + using RefCountType = std::atomic; using PoolMap = StringMap; using PoolMapEntry = StringMapEntry; mutable std::mutex PoolMutex;