From aec038fa8418d21755e22ff749969bddd4428da9 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Sat, 7 May 2011 19:23:14 +0000 Subject: [PATCH] Fix comments per Duncan's review. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131055 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetLowering.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index 218431201b0..25b726ba41b 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -1182,7 +1182,7 @@ protected: } /// 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 @@ private: /// 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;