diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-20 01:18:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-20 01:18:00 +0000 |
commit | 48427b539fc23267ff476a8137c765c11c3da92b (patch) | |
tree | 1ea2903ecd1cf586a19d177de866d337e62b1591 /lib/Analysis/DataStructure/Local.cpp | |
parent | 37884fc79e9a55e92ec26574c710c8d3609aa839 (diff) |
comment cleanup
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20699 91177308-0d34-0410-b5e6-96231b3b80d8
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)) { |