diff options
Diffstat (limited to 'llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp b/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp index 8fe7ae1282c..bfab96a1ddb 100644 --- a/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp +++ b/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp @@ -237,7 +237,7 @@ void splitAndWriteThinLTOBitcode( // sound because the virtual constant propagation optimizations effectively // inline all implementations of the virtual function into each call site, // rather than using function attributes to perform local optimization. - std::set<const Function *> EligibleVirtualFns; + DenseSet<const Function *> EligibleVirtualFns; // If any member of a comdat lives in MergedM, put all members of that // comdat in MergedM to keep the comdat together. DenseSet<const Comdat *> MergedMComdats; |