diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2014-01-09 02:39:45 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2014-01-09 02:39:45 +0000 |
| commit | 12e9d2b5c1b02491292008eab6ef26fb8fbe93a1 (patch) | |
| tree | 9a528df4e7f030ee8691172387a807983bfad28b /llvm/lib/IR | |
| parent | 461f1eaaa1a7d43ca831a5e74cab67507faccc3c (diff) | |
| download | bcm5719-llvm-12e9d2b5c1b02491292008eab6ef26fb8fbe93a1.tar.gz bcm5719-llvm-12e9d2b5c1b02491292008eab6ef26fb8fbe93a1.zip | |
[PM] Rename this source file to something a bit more generic before
I add support for the new pass manager to it.
llvm-svn: 198838
Diffstat (limited to 'llvm/lib/IR')
| -rw-r--r-- | llvm/lib/IR/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | llvm/lib/IR/IRPrintingPasses.cpp (renamed from llvm/lib/IR/PrintModulePass.cpp) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/CMakeLists.txt b/llvm/lib/IR/CMakeLists.txt index b0feb9a073b..1ee7140ae42 100644 --- a/llvm/lib/IR/CMakeLists.txt +++ b/llvm/lib/IR/CMakeLists.txt @@ -18,6 +18,7 @@ add_llvm_library(LLVMCore GVMaterializer.cpp Globals.cpp IRBuilder.cpp + IRPrintingPasses.cpp InlineAsm.cpp Instruction.cpp Instructions.cpp @@ -32,7 +33,6 @@ add_llvm_library(LLVMCore Pass.cpp PassManager.cpp PassRegistry.cpp - PrintModulePass.cpp Type.cpp TypeFinder.cpp Use.cpp diff --git a/llvm/lib/IR/PrintModulePass.cpp b/llvm/lib/IR/IRPrintingPasses.cpp index 44b5b98ff02..cf829232173 100644 --- a/llvm/lib/IR/PrintModulePass.cpp +++ b/llvm/lib/IR/IRPrintingPasses.cpp @@ -1,4 +1,4 @@ -//===--- IR/PrintModulePass.cpp - Module/Function Printer -----------------===// +//===--- IRPrintingPasses.cpp - Module and Function printing passes -------===// // // The LLVM Compiler Infrastructure // |

