[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/DataStructureAA.cpp

Chris Lattner lattner at cs.uiuc.edu
Sun Mar 27 13:57:25 PST 2005



Changes in directory llvm/lib/Analysis/DataStructure:

DataStructureAA.cpp updated: 1.36 -> 1.37
---
Log message:

remove ...


---
Diffs of the changes:  (+2 -2)

 DataStructureAA.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Analysis/DataStructure/DataStructureAA.cpp
diff -u llvm/lib/Analysis/DataStructure/DataStructureAA.cpp:1.36 llvm/lib/Analysis/DataStructure/DataStructureAA.cpp:1.37
--- llvm/lib/Analysis/DataStructure/DataStructureAA.cpp:1.36	Sat Mar 26 18:02:33 2005
+++ llvm/lib/Analysis/DataStructure/DataStructureAA.cpp	Sun Mar 27 15:57:09 2005
@@ -140,8 +140,8 @@
   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.






More information about the llvm-commits mailing list