diff options
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/GlobalMerge.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/llvm/lib/CodeGen/GlobalMerge.cpp b/llvm/lib/CodeGen/GlobalMerge.cpp index 8b9545da914..3888226fa05 100644 --- a/llvm/lib/CodeGen/GlobalMerge.cpp +++ b/llvm/lib/CodeGen/GlobalMerge.cpp @@ -577,7 +577,8 @@ bool GlobalMerge::doInitialization(Module &M) {    for (auto &GV : M.globals()) {      // Merge is safe for "normal" internal or external globals only      if (GV.isDeclaration() || GV.isThreadLocal() || -        GV.hasSection() || GV.hasImplicitSection()) +        GV.hasSection() || GV.hasImplicitSection() || +        GV.hasDLLExportStorageClass())        continue;      // It's not safe to merge globals that may be preempted | 

