[llvm-commits] [llvm] r110401 - /llvm/trunk/lib/Analysis/BasicAliasAnalysis.cpp

Dan Gohman gohman at apple.com
Thu Aug 5 16:48:14 PDT 2010


Author: djg
Date: Thu Aug  5 18:48:14 2010
New Revision: 110401

URL: http://llvm.org/viewvc/llvm-project?rev=110401&view=rev
Log:
Fix 80-column violations.

Modified:
    llvm/trunk/lib/Analysis/BasicAliasAnalysis.cpp

Modified: llvm/trunk/lib/Analysis/BasicAliasAnalysis.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/BasicAliasAnalysis.cpp?rev=110401&r1=110400&r2=110401&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/BasicAliasAnalysis.cpp (original)
+++ llvm/trunk/lib/Analysis/BasicAliasAnalysis.cpp Thu Aug  5 18:48:14 2010
@@ -166,9 +166,9 @@
     virtual void copyValue(Value *From, Value *To) {}
     
     /// getAdjustedAnalysisPointer - This method is used when a pass implements
-    /// an analysis interface through multiple inheritance.  If needed, it should
-    /// override this to adjust the this pointer as needed for the specified pass
-    /// info.
+    /// an analysis interface through multiple inheritance.  If needed, it
+    /// should override this to adjust the this pointer as needed for the
+    /// specified pass info.
     virtual void *getAdjustedAnalysisPointer(AnalysisID PI) {
       if (PI ==  &AliasAnalysis::ID)
         return (AliasAnalysis*)this;
@@ -237,9 +237,9 @@
     bool pointsToConstantMemory(const Value *P);
 
     /// getAdjustedAnalysisPointer - This method is used when a pass implements
-    /// an analysis interface through multiple inheritance.  If needed, it should
-    /// override this to adjust the this pointer as needed for the specified pass
-    /// info.
+    /// an analysis interface through multiple inheritance.  If needed, it
+    /// should override this to adjust the this pointer as needed for the
+    /// specified pass info.
     virtual void *getAdjustedAnalysisPointer(AnalysisID PI) {
       if (PI == &AliasAnalysis::ID)
         return (AliasAnalysis*)this;





More information about the llvm-commits mailing list