diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-05-07 19:23:14 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-05-07 19:23:14 +0000 |
commit | 6dec2aa9b4175c89cf4c84e88b7211e36ec6b3dc (patch) | |
tree | fa485e70ec779f2556bf7b08bb2a78725ad79b3d | |
parent | 61bb499622c83a58f2270688a09ea174e40888ef (diff) | |
download | bcm5719-llvm-6dec2aa9b4175c89cf4c84e88b7211e36ec6b3dc.tar.gz bcm5719-llvm-6dec2aa9b4175c89cf4c84e88b7211e36ec6b3dc.zip |
Fix comments per Duncan's review.
llvm-svn: 131055
-rw-r--r-- | llvm/include/llvm/Target/TargetLowering.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Target/TargetLowering.h b/llvm/include/llvm/Target/TargetLowering.h index 218431201b0..25b726ba41b 100644 --- a/llvm/include/llvm/Target/TargetLowering.h +++ b/llvm/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; |