summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SlotIndexes.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-09-25 00:45:18 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-09-25 00:45:18 +0000
commitbc71af341eacca7b108ae795d2b6f7b297927218 (patch)
treea8a457d272af01bb5f235dfc9491920aa0357640 /llvm/lib/CodeGen/SlotIndexes.cpp
parent250fed25fd1a26b3d1bcbb576d52042a034db162 (diff)
downloadbcm5719-llvm-bc71af341eacca7b108ae795d2b6f7b297927218.tar.gz
bcm5719-llvm-bc71af341eacca7b108ae795d2b6f7b297927218.zip
Remove SlotIndex::PHI_BIT. It is no longer used by anything.
llvm-svn: 114779
Diffstat (limited to 'llvm/lib/CodeGen/SlotIndexes.cpp')
-rw-r--r--llvm/lib/CodeGen/SlotIndexes.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/SlotIndexes.cpp b/llvm/lib/CodeGen/SlotIndexes.cpp
index 4d362d55a4c..b106d3aa2fe 100644
--- a/llvm/lib/CodeGen/SlotIndexes.cpp
+++ b/llvm/lib/CodeGen/SlotIndexes.cpp
@@ -199,11 +199,7 @@ void SlotIndexes::dump() const {
// Print a SlotIndex to a raw_ostream.
void SlotIndex::print(raw_ostream &os) const {
- os << entry().getIndex();
- if (isPHI())
- os << "*";
- else
- os << "LudS"[getSlot()];
+ os << entry().getIndex() << "LudS"[getSlot()];
}
// Dump a SlotIndex to stderr.
OpenPOWER on IntegriCloud