diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-03-22 07:53:40 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-03-22 07:53:40 +0000 |
commit | 2fa75184f38e2ad394b18b7c4d108fac205cd815 (patch) | |
tree | 895f0c8e179bfc337bdbe5d5575f950308efe3f0 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 2fb3897f1b6281c2110bee5a5e5e70ac3dd9458b (diff) | |
download | bcm5719-llvm-2fa75184f38e2ad394b18b7c4d108fac205cd815.tar.gz bcm5719-llvm-2fa75184f38e2ad394b18b7c4d108fac205cd815.zip |
Another comments fixing
llvm-svn: 48683
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 94eba83e05d..2f109a2018a 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -822,7 +822,7 @@ SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV, const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV); if (!GVar) { - // If GV is an alias - use aliasee for determing thread-localness + // If GV is an alias then use the aliasee for determining thread-localness. if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV)) GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal()); } |