summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-02-06 05:17:02 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-02-06 05:17:02 +0000
commitf47fd2f22ae6fbe87aaa15abe4ed2f38f4375d44 (patch)
treec163a60854ee3cffc66241bdbdb28f4f42a1b5f0 /include/llvm
parent57732bff1e6166817b7408d2099a5adb666747f0 (diff)
downloadllvm-f47fd2f22ae6fbe87aaa15abe4ed2f38f4375d44.tar.gz
llvm-f47fd2f22ae6fbe87aaa15abe4ed2f38f4375d44.tar.bz2
llvm-f47fd2f22ae6fbe87aaa15abe4ed2f38f4375d44.tar.xz
[PM] Fix horrible typos that somehow didn't cause a failure in a C++11
build but spectacularly changed behavior of the C++98 build. =] This shows my one problem with not having unittests -- basic API expectations aren't well exercised by the integration tests because they *happen* to not come up, even though they might later. I'll probably add a basic unittest to complement the integration testing later, but I wanted to revive the bots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200905 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Analysis/LazyCallGraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/LazyCallGraph.h b/include/llvm/Analysis/LazyCallGraph.h
index d355b9cf5a..82dea95e2a 100644
--- a/include/llvm/Analysis/LazyCallGraph.h
+++ b/include/llvm/Analysis/LazyCallGraph.h
@@ -248,7 +248,7 @@ private:
/// callees, de-duplicate and provide fast testing of whether a function is
/// a callee, and facilitate iteration of child nodes in the graph.
class LazyCallGraph::Node {
- friend LazyCallGraph;
+ friend class LazyCallGraph;
LazyCallGraph &G;
Function &F;