Add const qualifiers to TargetLoweringObjectFile usage.
[oota-llvm.git] / include / llvm / CodeGen / PseudoSourceValue.h
index 1a1dde9d55946ea4239889149300fb439d81d464..bace631ab9554cd00e76455dafdb43a368ea4944 100644 (file)
@@ -15,7 +15,6 @@
 #define LLVM_CODEGEN_PSEUDOSOURCEVALUE_H
 
 #include "llvm/Value.h"
-#include "llvm/Support/raw_ostream.h"
 
 namespace llvm {
   class MachineFrameInfo;
@@ -33,7 +32,7 @@ namespace llvm {
     virtual void printCustom(raw_ostream &O) const;
 
   public:
-    PseudoSourceValue(enum ValueTy Subclass = PseudoSourceValueVal);
+    explicit PseudoSourceValue(enum ValueTy Subclass = PseudoSourceValueVal);
 
     /// isConstant - Test whether the memory pointed to by this
     /// PseudoSourceValue has a constant value.
@@ -53,7 +52,8 @@ namespace llvm {
     ///
     static inline bool classof(const PseudoSourceValue *) { return true; }
     static inline bool classof(const Value *V) {
-      return V->getValueID() == PseudoSourceValueVal;
+      return V->getValueID() == PseudoSourceValueVal ||
+             V->getValueID() == FixedStackPseudoSourceValueVal;
     }
 
     /// A pseudo source value referencing a fixed stack frame entry,
@@ -103,11 +103,9 @@ namespace llvm {
 
     virtual bool mayAlias(const MachineFrameInfo *) const;
 
-    virtual void printCustom(raw_ostream &OS) const {
-      OS << "FixedStack" << FI;
-    }
+    virtual void printCustom(raw_ostream &OS) const;
 
-    int getFrameIndex(void) const { return FI; }
+    int getFrameIndex() const { return FI; }
   };
 } // End llvm namespace