Fix some comments from to /
Diff Detail
- Build Status
Buildable 34 Build 34: arc lint + arc unit
Event Timeline
include/llvm/IR/Function.h | ||
---|---|---|
115–118 | I believe you don't need a \brief if it is an one line comment. | |
194–196 | This is a good place to use \brief. Something like | |
199–201 | Same as above | |
lib/Analysis/InlineCost.cpp | ||
128 | http://llvm.org/docs/CodingStandards.html#comment-formatting says "prefer C++ style comments" |
lib/Analysis/InlineCost.cpp | ||
---|---|---|
128 | Thanks, I wasn't sure about this one. |
LGTM with a couple of fixes noted below. Please split out the non-doxygen fixes from this patch and submit those as separate NFC changes (doesn't need to be reviewed further).
include/llvm/IR/Function.h | ||
---|---|---|
194 | s/breif/brief/ | |
195 | s/cound/count/ | |
199 | Needs line between brief and detailed | |
200 | s/cound/count/ | |
include/llvm/ProfileData/ProfileCommon.h | ||
57 | This is not a doxygen change, remove from this patch. | |
61 | Ditto on these 2 lines | |
70 | Ditto | |
76 | Ditto. | |
lib/ProfileData/ProfileSummaryBuilder.cpp | ||
64 | The changes to this file should also be submitted separately. |
include/llvm/ProfileData/ProfileCommon.h | ||
---|---|---|
57 | Can I just change the name of the patch instead? Will be faster and easier |
I believe you don't need a \brief if it is an one line comment.