summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2014-04-11 21:58:11 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2014-04-11 21:58:11 +0000
commit71e50b4d975f3746f018a421ac192f824fb0e693 (patch)
treeb4d31393831a4fc09e5bdfe739a62abdfb48226d /include
parent010311b1044feb1ab04c5a5eafbf1fba02548d08 (diff)
downloadllvm-71e50b4d975f3746f018a421ac192f824fb0e693.tar.gz
llvm-71e50b4d975f3746f018a421ac192f824fb0e693.tar.bz2
llvm-71e50b4d975f3746f018a421ac192f824fb0e693.tar.xz
Make doxygen comment match the declaration.
Found by -Wdocumentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206076 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetLowering.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 6c44771dd2..f31fd9f233 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -2381,7 +2381,7 @@ public:
/// Expand a MUL into two nodes. One that computes the high bits of
/// the result and one that computes the low bits.
- /// \param VT The value type to use for the Lo and Hi nodes.
+ /// \param HiLoVT The value type to use for the Lo and Hi nodes.
/// \param LL Low bits of the LHS of the MUL. You can use this parameter
/// if you want to control how low bits are extracted from the LHS.
/// \param LH High bits of the LHS of the MUL. See LL for meaning.