diff options
author | Nate Begeman <natebegeman@mac.com> | 2004-08-11 07:40:04 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2004-08-11 07:40:04 +0000 |
commit | 7a4fe9be7ee67dafa8d172d16bc6799e599ad495 (patch) | |
tree | 3ba0c88d4cc00fe12ee71d4b57d64d917957e774 /lib/Target/PowerPC/PowerPCTargetMachine.h | |
parent | 74a806cd3dc7ba2d64705b91b40616ca53925924 (diff) |
Clean up 32/64bit and Darwin/AIX split. Next steps: 64 bit ISel, AIX asm printer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15662 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PowerPCTargetMachine.h')
-rw-r--r-- | lib/Target/PowerPC/PowerPCTargetMachine.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.h b/lib/Target/PowerPC/PowerPCTargetMachine.h index cf78943a49..cef99119ce 100644 --- a/lib/Target/PowerPC/PowerPCTargetMachine.h +++ b/lib/Target/PowerPC/PowerPCTargetMachine.h @@ -46,6 +46,13 @@ public: } static unsigned getJITMatchQuality(); + + virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out); + + // Two shared sets between the instruction selector and the printer allow for + // correct linkage on Darwin + std::set<GlobalValue*> CalledFunctions; + std::set<GlobalValue*> AddressTaken; }; } // end namespace llvm |