[llvm] r201633 - Fix a typo in a comment.

Mingjie Xing mingjie.xing at gmail.com
Tue Feb 18 19:20:47 PST 2014


Author: xmj
Date: Tue Feb 18 21:20:46 2014
New Revision: 201633

URL: http://llvm.org/viewvc/llvm-project?rev=201633&view=rev
Log:
Fix a typo in a comment.

Modified:
    llvm/trunk/include/llvm/Analysis/CallGraph.h

Modified: llvm/trunk/include/llvm/Analysis/CallGraph.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/CallGraph.h?rev=201633&r1=201632&r2=201633&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/CallGraph.h (original)
+++ llvm/trunk/include/llvm/Analysis/CallGraph.h Tue Feb 18 21:20:46 2014
@@ -12,8 +12,8 @@
 /// which is a very useful tool for interprocedural optimization.
 ///
 /// Every function in a module is represented as a node in the call graph.  The
-/// callgraph node keeps track of which functions the are called by the
-/// function corresponding to the node.
+/// callgraph node keeps track of which functions are called by the function
+/// corresponding to the node.
 ///
 /// A call graph may contain nodes where the function that they correspond to
 /// is null.  These 'external' nodes are used to represent control flow that is





More information about the llvm-commits mailing list