[llvm-commits] [llvm] r131055 - /llvm/trunk/include/llvm/Target/TargetLowering.h

Eli Friedman eli.friedman at gmail.com
Sat May 7 12:23:14 PDT 2011


Author: efriedma
Date: Sat May  7 14:23:14 2011
New Revision: 131055

URL: http://llvm.org/viewvc/llvm-project?rev=131055&view=rev
Log:
Fix comments per Duncan's review.


Modified:
    llvm/trunk/include/llvm/Target/TargetLowering.h

Modified: llvm/trunk/include/llvm/Target/TargetLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetLowering.h?rev=131055&r1=131054&r2=131055&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetLowering.h (original)
+++ llvm/trunk/include/llvm/Target/TargetLowering.h Sat May  7 14:23:14 2011
@@ -1182,7 +1182,7 @@
   }
 
   /// setPrefFunctionAlignment - Set the target's preferred function alignment.
-  /// This should be set if there is a small performance benefit to
+  /// This should be set if there is a performance benefit to
   /// higher-than-minimum alignment
   void setPrefFunctionAlignment(unsigned Align) {
     PrefFunctionAlignment = Align;
@@ -1728,12 +1728,12 @@
   ///
   unsigned MinFunctionAlignment;
 
-  /// PrefFunctionAlignment - The perferred function alignment (used when
+  /// PrefFunctionAlignment - The preferred function alignment (used when
   /// alignment unspecified and optimizing for speed).
   ///
   unsigned PrefFunctionAlignment;
 
-  /// PrefLoopAlignment - The perferred loop alignment.
+  /// PrefLoopAlignment - The preferred loop alignment.
   ///
   unsigned PrefLoopAlignment;
 





More information about the llvm-commits mailing list