diff options
author | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2019-06-13 21:46:57 +0000 |
---|---|---|
committer | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2019-06-13 21:46:57 +0000 |
commit | 6e6e3af55bb97e1a4c97375c15a2b0099120c5a7 (patch) | |
tree | 4dc151e7deced1ab1a3ebab57fd420e8a0cf0138 /llvm/lib/LTO/LTOBackend.cpp | |
parent | a5b12be60f98012dc8b75933d6dc1210bd742054 (diff) | |
download | bcm5719-llvm-6e6e3af55bb97e1a4c97375c15a2b0099120c5a7.tar.gz bcm5719-llvm-6e6e3af55bb97e1a4c97375c15a2b0099120c5a7.zip |
[Remarks] Refactor optimization remarks setup
* Add a common function to setup opt-remarks
* Rename common options to the same names
* Add error types to distinguish between file errors and regex errors
llvm-svn: 363328
Diffstat (limited to 'llvm/lib/LTO/LTOBackend.cpp')
-rw-r--r-- | llvm/lib/LTO/LTOBackend.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/LTO/LTOBackend.cpp b/llvm/lib/LTO/LTOBackend.cpp index 9c2d0ed5d54..317d0163674 100644 --- a/llvm/lib/LTO/LTOBackend.cpp +++ b/llvm/lib/LTO/LTOBackend.cpp @@ -22,6 +22,7 @@ #include "llvm/Bitcode/BitcodeWriter.h" #include "llvm/IR/LegacyPassManager.h" #include "llvm/IR/PassManager.h" +#include "llvm/IR/RemarkStreamer.h" #include "llvm/IR/Verifier.h" #include "llvm/LTO/LTO.h" #include "llvm/MC/SubtargetFeature.h" @@ -32,9 +33,9 @@ #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" #include "llvm/Support/Program.h" -#include "llvm/Support/raw_ostream.h" #include "llvm/Support/TargetRegistry.h" #include "llvm/Support/ThreadPool.h" +#include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Transforms/IPO.h" #include "llvm/Transforms/IPO/PassManagerBuilder.h" |