diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-27 21:57:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-27 21:57:09 +0000 |
commit | 2db10ba2977d0700b15be0b8bbce7b30e48e843b (patch) | |
tree | e32489efd3a58ee4813ba6197257907c49106c94 /llvm | |
parent | f290da862dbe57fc9d5247ba06a1157a4d80fd1a (diff) | |
download | bcm5719-llvm-2db10ba2977d0700b15be0b8bbce7b30e48e843b.tar.gz bcm5719-llvm-2db10ba2977d0700b15be0b8bbce7b30e48e843b.zip |
remove ...
llvm-svn: 20883
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/DataStructureAA.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp b/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp index 19ac2acc31d..65b9b129f32 100644 --- a/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp +++ b/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp @@ -140,8 +140,8 @@ AliasAnalysis::AliasResult DSAA::alias(const Value *V1, unsigned V1Size, if (N1 == 0 || N2 == 0) // Can't tell whether anything aliases null. return AliasAnalysis::alias(V1, V1Size, V2, V2Size); - - // We can only make a judgment of one of the nodes is complete... + + // We can only make a judgment if one of the nodes is complete. if (N1->isComplete() || N2->isComplete()) { if (N1 != N2) return NoAlias; // Completely different nodes. |