summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2009-12-17 23:49:16 +0000
committerJohn McCall <rjmccall@apple.com>2009-12-17 23:49:16 +0000
commit753100cef3a5491121e38372b0e64072891750be (patch)
tree9aa841f589edce088a9868780b97dacd1b0491ae
parent3c13667d14a9a06e92a43af260c222caa8ee3095 (diff)
downloadbcm5719-llvm-753100cef3a5491121e38372b0e64072891750be.tar.gz
bcm5719-llvm-753100cef3a5491121e38372b0e64072891750be.zip
Sundry dependent-name fixes flagged by clang++.
llvm-svn: 91636
-rw-r--r--llvm/include/llvm/CodeGen/MachinePassRegistry.h4
-rw-r--r--llvm/lib/CodeGen/PBQP/AnnotatedGraph.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/llvm/include/llvm/CodeGen/MachinePassRegistry.h b/llvm/include/llvm/CodeGen/MachinePassRegistry.h
index 680d2b80df7..6ee2e90a9f5 100644
--- a/llvm/include/llvm/CodeGen/MachinePassRegistry.h
+++ b/llvm/include/llvm/CodeGen/MachinePassRegistry.h
@@ -129,9 +129,9 @@ public:
// Add existing passes to option.
for (RegistryClass *Node = RegistryClass::getList();
Node; Node = Node->getNext()) {
- addLiteralOption(Node->getName(),
+ this->addLiteralOption(Node->getName(),
(typename RegistryClass::FunctionPassCtor)Node->getCtor(),
- Node->getDescription());
+ Node->getDescription());
}
// Make sure we listen for list changes.
diff --git a/llvm/lib/CodeGen/PBQP/AnnotatedGraph.h b/llvm/lib/CodeGen/PBQP/AnnotatedGraph.h
index 904061ca4fb..a47dce9e675 100644
--- a/llvm/lib/CodeGen/PBQP/AnnotatedGraph.h
+++ b/llvm/lib/CodeGen/PBQP/AnnotatedGraph.h
@@ -132,19 +132,19 @@ public:
}
NodeData& getNodeData(const NodeIterator &nodeItr) {
- return getNodeEntry(nodeItr).getNodeData();
+ return PGraph::getNodeEntry(nodeItr).getNodeData();
}
const NodeData& getNodeData(const NodeIterator &nodeItr) const {
- return getNodeEntry(nodeItr).getNodeData();
+ return PGraph::getNodeEntry(nodeItr).getNodeData();
}
EdgeData& getEdgeData(const EdgeIterator &edgeItr) {
- return getEdgeEntry(edgeItr).getEdgeData();
+ return PGraph::getEdgeEntry(edgeItr).getEdgeData();
}
const EdgeEntry& getEdgeData(const EdgeIterator &edgeItr) const {
- return getEdgeEntry(edgeItr).getEdgeData();
+ return PGraph::getEdgeEntry(edgeItr).getEdgeData();
}
SimpleGraph toSimpleGraph() const {
OpenPOWER on IntegriCloud