diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-11-16 20:55:57 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-11-16 20:55:57 +0000 |
commit | 2dd41c5d42d1f34aae67b0d883afc7b1200a4070 (patch) | |
tree | d1e69ff97b14b5f9c8d3e0aed565a9a3bbac31af /llvm/lib/IR/LLVMContextImpl.cpp | |
parent | 9c432ae111bedfbd7987bfd6824d205cca3dc3e8 (diff) | |
download | bcm5719-llvm-2dd41c5d42d1f34aae67b0d883afc7b1200a4070.tar.gz bcm5719-llvm-2dd41c5d42d1f34aae67b0d883afc7b1200a4070.zip |
[IR] Manage TheNoneToken with a std::unique_ptr
Hopefully, this will make the sanitizer build bots happy.
llvm-svn: 253248
Diffstat (limited to 'llvm/lib/IR/LLVMContextImpl.cpp')
-rw-r--r-- | llvm/lib/IR/LLVMContextImpl.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/IR/LLVMContextImpl.cpp b/llvm/lib/IR/LLVMContextImpl.cpp index 48df5ba62f0..5239b4f7d84 100644 --- a/llvm/lib/IR/LLVMContextImpl.cpp +++ b/llvm/lib/IR/LLVMContextImpl.cpp @@ -21,7 +21,6 @@ using namespace llvm; LLVMContextImpl::LLVMContextImpl(LLVMContext &C) : TheTrueVal(nullptr), TheFalseVal(nullptr), - TheNoneToken(nullptr), VoidTy(C, Type::VoidTyID), LabelTy(C, Type::LabelTyID), HalfTy(C, Type::HalfTyID), |