diff options
Diffstat (limited to 'lib/Analysis/DataStructure/Local.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/Local.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index 02b5b16a58..8eacc1f38e 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<GlobalValue>(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<Constant>(V)) { |