summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-11-12 21:49:55 +0000
committerDavid Greene <greened@obbligato.org>2009-11-12 21:49:55 +0000
commit033d65581d1af630c498787fe32cad56ad76758c (patch)
tree97afeff5bcac41adbc1ae792b7b0da61dc498658
parent5fb4e7553cb3f59ef63fe5cb80596e96c59cc945 (diff)
downloadbcm5719-llvm-033d65581d1af630c498787fe32cad56ad76758c.tar.gz
bcm5719-llvm-033d65581d1af630c498787fe32cad56ad76758c.zip
Do some cleanups suggested by Chris.
llvm-svn: 87034
-rw-r--r--llvm/include/llvm/CodeGen/PseudoSourceValue.h7
-rw-r--r--llvm/lib/CodeGen/PseudoSourceValue.cpp4
2 files changed, 6 insertions, 5 deletions
diff --git a/llvm/include/llvm/CodeGen/PseudoSourceValue.h b/llvm/include/llvm/CodeGen/PseudoSourceValue.h
index 1a1dde9d559..7b3b0381f77 100644
--- a/llvm/include/llvm/CodeGen/PseudoSourceValue.h
+++ b/llvm/include/llvm/CodeGen/PseudoSourceValue.h
@@ -15,7 +15,6 @@
#define LLVM_CODEGEN_PSEUDOSOURCEVALUE_H
#include "llvm/Value.h"
-#include "llvm/Support/raw_ostream.h"
namespace llvm {
class MachineFrameInfo;
@@ -103,11 +102,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
diff --git a/llvm/lib/CodeGen/PseudoSourceValue.cpp b/llvm/lib/CodeGen/PseudoSourceValue.cpp
index e95f017fc39..7fb3e6e6d2d 100644
--- a/llvm/lib/CodeGen/PseudoSourceValue.cpp
+++ b/llvm/lib/CodeGen/PseudoSourceValue.cpp
@@ -109,3 +109,7 @@ bool FixedStackPseudoSourceValue::mayAlias(const MachineFrameInfo *MFI) const {
// Spill slots will not alias any LLVM IR value.
return !MFI->isSpillSlotObjectIndex(FI);
}
+
+void FixedStackPseudoSourceValue::printCustom(raw_ostream &OS) const {
+ OS << "FixedStack" << FI;
+}
OpenPOWER on IntegriCloud