summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2010-08-04 09:30:20 +0000
committerTorok Edwin <edwintorok@gmail.com>2010-08-04 09:30:20 +0000
commit484959a26c097968e9b331b5063cda788ae1e034 (patch)
treed646550abd937a16f480651f248a90bfccee4740
parentd98af0a5b86425fdc723bb54fc59247c585d63ab (diff)
downloadllvm-484959a26c097968e9b331b5063cda788ae1e034.tar.gz
llvm-484959a26c097968e9b331b5063cda788ae1e034.tar.bz2
llvm-484959a26c097968e9b331b5063cda788ae1e034.tar.xz
Fix build of DataFlow.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110193 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Support/DataFlow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/DataFlow.h b/include/llvm/Support/DataFlow.h
index 8f79ead1c5..355c402f54 100644
--- a/include/llvm/Support/DataFlow.h
+++ b/include/llvm/Support/DataFlow.h
@@ -25,7 +25,7 @@ namespace llvm {
template <> struct GraphTraits<const Value*> {
typedef const Value NodeType;
- typedef Value::use_const_iterator ChildIteratorType;
+ typedef Value::const_use_iterator ChildIteratorType;
static NodeType *getEntryNode(const Value *G) {
return G;