diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-02 18:44:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-02 18:44:12 +0000 |
commit | 0823d2a654cb3a075016f6efd21359ed4f5aca21 (patch) | |
tree | 174ad17988f0d18b0d2377d6cdcd69921cb64009 /docs | |
parent | 8991d51ddcea31e198aff1fd01c05af2679ee8f8 (diff) |
Inline addAssemblyEmitter into its one real caller and delete
the -print-emitted-asm option. The JIT shouldn't have to pull
in the asmprinter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95100 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/WritingAnLLVMBackend.html | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/WritingAnLLVMBackend.html b/docs/WritingAnLLVMBackend.html index 14571732dd..43766b5101 100644 --- a/docs/WritingAnLLVMBackend.html +++ b/docs/WritingAnLLVMBackend.html @@ -354,8 +354,6 @@ public: // Pass Pipeline Configuration virtual bool addInstSelector(PassManagerBase &PM, bool Fast); virtual bool addPreEmitPass(PassManagerBase &PM, bool Fast); - virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast, - std::ostream &Out); }; } // end namespace llvm |