[llvm-commits] [llvm] r110193 - /llvm/trunk/include/llvm/Support/DataFlow.h

Torok Edwin edwintorok at gmail.com
Wed Aug 4 02:30:20 PDT 2010


Author: edwin
Date: Wed Aug  4 04:30:20 2010
New Revision: 110193

URL: http://llvm.org/viewvc/llvm-project?rev=110193&view=rev
Log:
Fix build of DataFlow.h

Modified:
    llvm/trunk/include/llvm/Support/DataFlow.h

Modified: llvm/trunk/include/llvm/Support/DataFlow.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/DataFlow.h?rev=110193&r1=110192&r2=110193&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/DataFlow.h (original)
+++ llvm/trunk/include/llvm/Support/DataFlow.h Wed Aug  4 04:30:20 2010
@@ -25,7 +25,7 @@
 
 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;





More information about the llvm-commits mailing list