[llvm-commits] [llvm] r101567 - /llvm/trunk/include/llvm/Target/TargetMachine.h

Dan Gohman gohman at apple.com
Fri Apr 16 16:09:10 PDT 2010


Author: djg
Date: Fri Apr 16 18:09:10 2010
New Revision: 101567

URL: http://llvm.org/viewvc/llvm-project?rev=101567&view=rev
Log:
Add a getSelectionDAGInfo member to TargetMachine.

Modified:
    llvm/trunk/include/llvm/Target/TargetMachine.h

Modified: llvm/trunk/include/llvm/Target/TargetMachine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetMachine.h?rev=101567&r1=101566&r2=101567&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetMachine.h (original)
+++ llvm/trunk/include/llvm/Target/TargetMachine.h Fri Apr 16 18:09:10 2010
@@ -28,6 +28,7 @@
 class TargetIntrinsicInfo;
 class TargetJITInfo;
 class TargetLowering;
+class TargetSelectionDAGInfo;
 class TargetFrameInfo;
 class JITCodeEmitter;
 class MCContext;
@@ -106,6 +107,7 @@
   virtual const TargetInstrInfo        *getInstrInfo() const { return 0; }
   virtual const TargetFrameInfo        *getFrameInfo() const { return 0; }
   virtual       TargetLowering    *getTargetLowering() const { return 0; }
+  virtual       TargetSelectionDAGInfo *getSelectionDAGInfo() const{ return 0; }
   virtual const TargetData            *getTargetData() const { return 0; }
   
   /// getMCAsmInfo - Return target specific asm information.





More information about the llvm-commits mailing list