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

llvm-svn: 26974
diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.h b/llvm/lib/Target/PowerPC/PPCTargetMachine.h
index 4038a2a..3b2e481 100644
--- a/llvm/lib/Target/PowerPC/PPCTargetMachine.h
+++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.h
@@ -23,9 +23,7 @@
 
 namespace llvm {
 class PassManager;
-class IntrinsicLowering;
 class GlobalValue;
-class IntrinsicLowering;
 
 class PPCTargetMachine : public TargetMachine {
   PPCInstrInfo           InstrInfo;
@@ -35,8 +33,7 @@
   PPCTargetLowering      TLInfo;
   InstrItineraryData     InstrItins;
 public:
-  PPCTargetMachine(const Module &M, IntrinsicLowering *IL,
-                   const std::string &FS);
+  PPCTargetMachine(const Module &M, const std::string &FS);
 
   virtual const PPCInstrInfo     *getInstrInfo() const { return &InstrInfo; }
   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }