summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-13 23:00:45 +0000
committerChris Lattner <sabre@nondot.org>2004-02-13 23:00:45 +0000
commit208d638fa4fbf31ba83445861ad13c2e8c72e5f4 (patch)
tree0c6b879503d7f0afc259109f4655c92030203cfe
parent94f4f8ea10b9a6eb87f27e8bed205b2f8feac3ae (diff)
downloadllvm-208d638fa4fbf31ba83445861ad13c2e8c72e5f4.tar.gz
llvm-208d638fa4fbf31ba83445861ad13c2e8c72e5f4.tar.bz2
llvm-208d638fa4fbf31ba83445861ad13c2e8c72e5f4.tar.xz
Change access to the cwriter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11406 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Assembly/CWriter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Assembly/CWriter.h b/include/llvm/Assembly/CWriter.h
index 3029787ca4..26397e0be3 100644
--- a/include/llvm/Assembly/CWriter.h
+++ b/include/llvm/Assembly/CWriter.h
@@ -19,8 +19,8 @@
namespace llvm {
-class Pass;
-Pass *createWriteToCPass(std::ostream &o);
+class PassManager;
+void AddPassesToWriteC(PassManager &PM, std::ostream &o);
} // End llvm namespace