Eliminate IntrinsicLowering from TargetMachine.
Make the CBE and V9 backends create their own, since they're the only ones that use it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26974 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Sparc/SparcTargetMachine.h b/lib/Target/Sparc/SparcTargetMachine.h
index 196ad75..0cad652 100644
--- a/lib/Target/Sparc/SparcTargetMachine.h
+++ b/lib/Target/Sparc/SparcTargetMachine.h
@@ -22,7 +22,6 @@
 
 namespace llvm {
 
-class IntrinsicLowering;
 class Module;
 
 class SparcTargetMachine : public TargetMachine {
@@ -30,8 +29,7 @@
   SparcInstrInfo InstrInfo;
   TargetFrameInfo FrameInfo;
 public:
-  SparcTargetMachine(const Module &M, IntrinsicLowering *IL,
-                     const std::string &FS);
+  SparcTargetMachine(const Module &M, const std::string &FS);
 
   virtual const SparcInstrInfo *getInstrInfo() const { return &InstrInfo; }
   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }