diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-01-12 11:10:32 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-01-12 11:10:32 +0000 |
commit | b8ddc7043c4562fe14b239d31d73ad76cb77e182 (patch) | |
tree | 1d2558a036035cbcce734a8bdb0674a0a6ab7caa /llvm/lib/Target/CppBackend/CPPBackend.cpp | |
parent | a54dc82e336354a946c0ee5396e7550005427987 (diff) | |
download | bcm5719-llvm-b8ddc7043c4562fe14b239d31d73ad76cb77e182.tar.gz bcm5719-llvm-b8ddc7043c4562fe14b239d31d73ad76cb77e182.zip |
[PM] Rename the IR printing pass header to a more generic and correct
name to match the source file which I got earlier. Update the include
sites. Also modernize the comments in the header to use the more
recommended doxygen style.
llvm-svn: 199041
Diffstat (limited to 'llvm/lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | llvm/lib/Target/CppBackend/CPPBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/CppBackend/CPPBackend.cpp b/llvm/lib/Target/CppBackend/CPPBackend.cpp index 492b1947bc0..6e2dd0a8e7b 100644 --- a/llvm/lib/Target/CppBackend/CPPBackend.cpp +++ b/llvm/lib/Target/CppBackend/CPPBackend.cpp @@ -1924,11 +1924,11 @@ void CppWriter::printProgram(const std::string& fname, Out << "#include <llvm/IR/DerivedTypes.h>\n"; Out << "#include <llvm/IR/Function.h>\n"; Out << "#include <llvm/IR/GlobalVariable.h>\n"; + Out << "#include <llvm/IR/IRPrintingPasses.h>\n"; Out << "#include <llvm/IR/InlineAsm.h>\n"; Out << "#include <llvm/IR/Instructions.h>\n"; Out << "#include <llvm/IR/LLVMContext.h>\n"; Out << "#include <llvm/IR/Module.h>\n"; - Out << "#include <llvm/IR/PrintModulePass.h>\n"; Out << "#include <llvm/Support/FormattedStream.h>\n"; Out << "#include <llvm/Support/MathExtras.h>\n"; Out << "#include <algorithm>\n"; |