From: Chris Lattner Date: Thu, 3 May 2007 18:32:10 +0000 (+0000) Subject: This is a patch to fix a compile error in STLExtras.h, and X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=82493289e0234e0172313e845fb87306cf3687ac;p=oota-llvm.git This is a patch to fix a compile error in STLExtras.h, and a bug in GraphWriter.cpp. Patch by Florian Brandner git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36684 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/STLExtras.h b/include/llvm/ADT/STLExtras.h index af4996502fc..14137e3c101 100644 --- a/include/llvm/ADT/STLExtras.h +++ b/include/llvm/ADT/STLExtras.h @@ -71,7 +71,7 @@ public: typedef RootIt iterator_type; typedef mapped_iterator _Self; - inline RootIt &getCurrent() const { return current; } + inline const RootIt &getCurrent() const { return current; } inline explicit mapped_iterator(const RootIt &I, UnaryFunc F) : current(I), Fn(F) {} diff --git a/lib/Support/GraphWriter.cpp b/lib/Support/GraphWriter.cpp index 31d8d797bed..eab76dff5d5 100644 --- a/lib/Support/GraphWriter.cpp +++ b/lib/Support/GraphWriter.cpp @@ -70,6 +70,7 @@ void llvm::DisplayGraph(const sys::Path &Filename) { sys::Path dotty(LLVM_PATH_DOTTY); std::vector args; + args.push_back(dotty.c_str()); args.push_back(Filename.c_str()); args.push_back(0);