Initial support for carrying MachineInstrs in SUnits.
[oota-llvm.git] / include / llvm / CodeGen / PseudoSourceValue.h
index 4620456ecfe07dbbbd0b3211ccec391a07c1b4ab..dccf735ed029e8ca87fa2d59501798cf0df0a026 100644 (file)
@@ -28,7 +28,6 @@ namespace llvm {
   public:
     PseudoSourceValue();
 
-    virtual void print(std::ostream &OS) const;
     virtual void print(raw_ostream &OS) const;
 
     /// isConstant - Test whether this PseudoSourceValue has a constant value.
@@ -61,16 +60,6 @@ namespace llvm {
     /// A SV referencing the jump table
     static const PseudoSourceValue *getJumpTable();
   };
-
-inline std::ostream &operator<<(std::ostream &OS,const PseudoSourceValue &PSV) {
-  PSV.print(OS);
-  return OS;
-}
-inline raw_ostream &operator<<(raw_ostream &OS, const PseudoSourceValue &PSV) {
-  PSV.print(OS);
-  return OS;
-}
-
 } // End llvm namespace
 
 #endif