diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-08-05 19:35:22 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-08-05 19:35:22 +0000 |
| commit | d959cfc8829b94533f013bde99e99cd021932525 (patch) | |
| tree | 901211f00eb387c94af028c4454cf93a9fb482ab | |
| parent | f13bcdc4a43ab91a8b8f4da52b65000d51c56e9d (diff) | |
| download | bcm5719-llvm-d959cfc8829b94533f013bde99e99cd021932525.tar.gz bcm5719-llvm-d959cfc8829b94533f013bde99e99cd021932525.zip | |
Silence some warnings from doxygen about @param argument name not matching the
actual argument name of the documented function.
llvm-svn: 40851
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LowerPacked.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Scalar/LowerPacked.cpp b/llvm/lib/Transforms/Scalar/LowerPacked.cpp index 0530172a70e..a701c75feb3 100644 --- a/llvm/lib/Transforms/Scalar/LowerPacked.cpp +++ b/llvm/lib/Transforms/Scalar/LowerPacked.cpp @@ -60,7 +60,7 @@ public: 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 @@ public: 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 |

