aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/PrintModulePass.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-18 20:19:09 +0000
committerChris Lattner <sabre@nondot.org>2001-10-18 20:19:09 +0000
commit986fced5f9b3ef06f514cba66db499acffdc9711 (patch)
tree8fa2100224cf78ba4f631482abc6ade7d6be448a /include/llvm/Transforms/PrintModulePass.h
parent9effd69ca2fe4d20b8a0dcbf4f9d5d4a402c536d (diff)
move llvm/Transforms/Pass.h to the top level llvm/Pass.h file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@901 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/PrintModulePass.h')
-rw-r--r--include/llvm/Transforms/PrintModulePass.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Transforms/PrintModulePass.h b/include/llvm/Transforms/PrintModulePass.h
index 142c2b08d1..a7a4412076 100644
--- a/include/llvm/Transforms/PrintModulePass.h
+++ b/include/llvm/Transforms/PrintModulePass.h
@@ -8,7 +8,7 @@
#ifndef LLVM_TRANSFORMS_PRINTMODULE_H
#define LLVM_TRANSFORMS_PRINTMODULE_H
-#include "llvm/Transforms/Pass.h"
+#include "llvm/Pass.h"
#include "llvm/Assembly/Writer.h"
#include "llvm/Bytecode/Writer.h"
@@ -61,6 +61,7 @@ public:
bool doPassFinalization(Module *M) {
WriteBytecodeToFile(M, *Out);
+ return false;
}
};