diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2017-05-01 17:08:00 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2017-05-01 17:08:00 +0000 |
commit | e369bd92da3d1cb1eb8ecd6c9530596f189f1e45 (patch) | |
tree | 8bcfc9827e45c3da07d7aafeef53205cae30df4e /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | ddebb703fc6e831f94d7305eab2e1e8547785a7f (diff) | |
download | bcm5719-llvm-e369bd92da3d1cb1eb8ecd6c9530596f189f1e45.tar.gz bcm5719-llvm-e369bd92da3d1cb1eb8ecd6c9530596f189f1e45.zip |
Adapt to LLVM's rename of WeakVH to WeakTrackingVH; NFC
llvm-svn: 301815
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 9e51ac6cc7b..10f16732145 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -1154,7 +1154,7 @@ void CodeGenModule::addCompilerUsedGlobal(llvm::GlobalValue *GV) { } static void emitUsed(CodeGenModule &CGM, StringRef Name, - std::vector<llvm::WeakVH> &List) { + std::vector<llvm::WeakTrackingVH> &List) { // Don't create llvm.used if there is no need. if (List.empty()) return; |