[llvm-commits] [llvm] r40851 - /llvm/trunk/lib/Transforms/Scalar/LowerPacked.cpp

Reid Spencer rspencer at reidspencer.com
Sun Aug 5 12:35:22 PDT 2007


Author: reid
Date: Sun Aug  5 14:35:22 2007
New Revision: 40851

URL: http://llvm.org/viewvc/llvm-project?rev=40851&view=rev
Log:
Silence some warnings from doxygen about @param argument name not matching the
actual argument name of the documented function.

Modified:
    llvm/trunk/lib/Transforms/Scalar/LowerPacked.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/LowerPacked.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LowerPacked.cpp?rev=40851&r1=40850&r2=40851&view=diff

==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LowerPacked.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LowerPacked.cpp Sun Aug  5 14:35:22 2007
@@ -60,7 +60,7 @@
    void visitBinaryOperator(BinaryOperator& BO);
 
    /// @brief Lowers packed icmp operations.
-   /// @param CI the icmp operator to convert
+   /// @param IC the icmp operator to convert
    void visitICmpInst(ICmpInst& IC);
 
    /// @brief Lowers packed select instructions.
@@ -68,11 +68,11 @@
    void visitSelectInst(SelectInst& SELI);
 
    /// @brief Lowers packed extractelement instructions.
-   /// @param EI the extractelement operator to convert
+   /// @param EE the extractelement operator to convert
    void visitExtractElementInst(ExtractElementInst& EE);
 
    /// @brief Lowers packed insertelement instructions.
-   /// @param EI the insertelement operator to convert
+   /// @param IE the insertelement operator to convert
    void visitInsertElementInst(InsertElementInst& IE);
 
    /// This function asserts if the instruction is a VectorType but





More information about the llvm-commits mailing list