diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2006-03-13 23:17:42 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2006-03-13 23:17:42 +0000 |
| commit | 8991ad386d0f51bfb0ee9ef69b190010a47caf1e (patch) | |
| tree | fd5906c1c84d13f84563591f18c208f0c6a4d9e9 | |
| parent | c567c4efbb8a110163a0075d83836d81a3cba48f (diff) | |
| download | bcm5719-llvm-8991ad386d0f51bfb0ee9ef69b190010a47caf1e.tar.gz bcm5719-llvm-8991ad386d0f51bfb0ee9ef69b190010a47caf1e.zip | |
Added getTargetLowering() - returns DAG lowering info.
llvm-svn: 26739
| -rw-r--r-- | llvm/include/llvm/Target/TargetMachine.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/include/llvm/Target/TargetMachine.h b/llvm/include/llvm/Target/TargetMachine.h index 5a58951a75a..387d2968472 100644 --- a/llvm/include/llvm/Target/TargetMachine.h +++ b/llvm/include/llvm/Target/TargetMachine.h @@ -24,6 +24,7 @@ class TargetSubtarget; class TargetInstrInfo; class TargetInstrDescriptor; class TargetJITInfo; +class TargetLowering; class TargetSchedInfo; class SparcV9RegInfo; class TargetFrameInfo; @@ -108,9 +109,11 @@ public: // -- Instruction opcode and operand information // -- Pipelines and scheduling information // -- Stack frame information + // -- Selection DAG lowering information // virtual const TargetInstrInfo *getInstrInfo() const { return 0; } virtual const TargetFrameInfo *getFrameInfo() const { return 0; } + virtual TargetLowering *getTargetLowering() const { return 0; } const TargetData &getTargetData() const { return DataLayout; } /// getSubtarget - This method returns a pointer to the specified type of |

