Removes duplicated names as recommended here: https://llvm.org/docs/CodingStandards.html#doxygen-use-in-documentation-comments
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/include/llvm/IR/CallingConv.h | ||
---|---|---|
167 | "HHVM" is an important detail here and does not repeat the enum member name. |
Comment Actions
Since the whole file and the enum is about calling conventions, repeating "Calling convention ..." or "This is a calling convention" is verbose without carrying any weight.
I think they can just be simplified as something like "/// Used for ...". Also, you need to reflow the comments while the first line has been shortened, i.e. run clang-format on the modified lines.
Comment Actions
@MaskRay should be done now. Clang format seems not to work for that kind of reformatting stuff so I did it manually.
Comment Actions
Thanks for reviewing. Can you submit the change. I do not have the required permissions
"HHVM" is an important detail here and does not repeat the enum member name.