From 48427b539fc23267ff476a8137c765c11c3da92b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 20 Mar 2005 01:18:00 +0000 Subject: [PATCH] comment cleanup git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20699 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/DataStructure/Local.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index 02b5b16a586..8eacc1f38e0 100644 --- a/lib/Analysis/DataStructure/Local.cpp +++ b/lib/Analysis/DataStructure/Local.cpp @@ -223,7 +223,7 @@ DSNodeHandle GraphBuilder::getValueDest(Value &Val) { // extract the actual value. DSNode* N; if (GlobalValue* GV = dyn_cast(V)) { - // Create a new global node for this global variable... + // Create a new global node for this global variable. N = createNode(GV->getType()->getElementType()); N->addGlobal(GV); } else if (Constant *C = dyn_cast(V)) {