diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-13 23:00:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-13 23:00:45 +0000 |
commit | 208d638fa4fbf31ba83445861ad13c2e8c72e5f4 (patch) | |
tree | 0c6b879503d7f0afc259109f4655c92030203cfe /include/llvm/Assembly | |
parent | 94f4f8ea10b9a6eb87f27e8bed205b2f8feac3ae (diff) | |
download | external_llvm-208d638fa4fbf31ba83445861ad13c2e8c72e5f4.zip external_llvm-208d638fa4fbf31ba83445861ad13c2e8c72e5f4.tar.gz external_llvm-208d638fa4fbf31ba83445861ad13c2e8c72e5f4.tar.bz2 |
Change access to the cwriter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11406 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r-- | include/llvm/Assembly/CWriter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Assembly/CWriter.h b/include/llvm/Assembly/CWriter.h index 3029787..26397e0 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 |