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 | e965bd16bbe556c637a7aa2a4ea4379a66fbbd44 (patch) | |
tree | 1c14b7bc8a9056cda40c1bd6034b9395f20c0428 /llvm/lib/Analysis/DataStructure/Local.cpp | |
parent | 42f1cfd63770c87cc5c5dd9e16741201bfa35dd8 (diff) | |
download | bcm5719-llvm-e965bd16bbe556c637a7aa2a4ea4379a66fbbd44.tar.gz bcm5719-llvm-e965bd16bbe556c637a7aa2a4ea4379a66fbbd44.zip |
comment cleanup
llvm-svn: 20699
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/Local.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/Local.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Local.cpp b/llvm/lib/Analysis/DataStructure/Local.cpp index 02b5b16a586..8eacc1f38e0 100644 --- a/llvm/lib/Analysis/DataStructure/Local.cpp +++ b/llvm/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)) { |