diff options
author | evgeny <eleviant@accesssoftek.com> | 2019-12-18 18:33:15 +0300 |
---|---|---|
committer | evgeny <eleviant@accesssoftek.com> | 2019-12-18 18:33:15 +0300 |
commit | ad364956edb7f06e0064e90e7c37d13b3cccd1cf (patch) | |
tree | 9d180ba44edd7947fdf1a25fb55c3fc70c23216b /llvm/lib/Analysis | |
parent | 3a779b7dfd8ee2924997dbed7f6c43d7989895f6 (diff) | |
download | bcm5719-llvm-ad364956edb7f06e0064e90e7c37d13b3cccd1cf.tar.gz bcm5719-llvm-ad364956edb7f06e0064e90e7c37d13b3cccd1cf.zip |
[ThinLTO] Show preserved symbols in DOT files
Differential revision: https://reviews.llvm.org/D71608
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/ModuleSummaryAnalysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp b/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp index 58e583d5d3a..8a1206f49c2 100644 --- a/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp +++ b/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp @@ -820,7 +820,7 @@ ModuleSummaryIndex llvm::buildModuleSummaryIndex( if (EC) report_fatal_error(Twine("Failed to open dot file ") + ModuleSummaryDotFile + ": " + EC.message() + "\n"); - Index.exportToDot(OSDot); + Index.exportToDot(OSDot, {}); } return Index; |