diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-05-19 19:07:54 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-05-19 19:07:54 +0000 |
commit | c773de6d61114820d396e7e758d2594d3b55f92d (patch) | |
tree | 4f2a345ee8f55de84bf9b30e68cb7dc4246d875c /include/llvm/Assembly | |
parent | 6de01632016acef6a8c630fa4263efce8f405a53 (diff) | |
download | external_llvm-c773de6d61114820d396e7e758d2594d3b55f92d.zip external_llvm-c773de6d61114820d396e7e758d2594d3b55f92d.tar.gz external_llvm-c773de6d61114820d396e7e758d2594d3b55f92d.tar.bz2 |
Fix some doxygen usage in these headers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28394 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r-- | include/llvm/Assembly/AutoUpgrade.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/llvm/Assembly/AutoUpgrade.h b/include/llvm/Assembly/AutoUpgrade.h index 2c959b8..70c29ab 100644 --- a/include/llvm/Assembly/AutoUpgrade.h +++ b/include/llvm/Assembly/AutoUpgrade.h @@ -43,9 +43,11 @@ namespace llvm { /// if it is a call to an old overloaded intrinsic. If it is, a new CallInst /// is created that uses the correct Function and possibly casts the /// argument and result to an unsigned type. - /// @param CI The CallInst to potentially auto-upgrade. /// @brief Get replacement instruction for overloaded intrinsic function call. - void UpgradeIntrinsicCall(CallInst* CI, Function* newF = 0); + void UpgradeIntrinsicCall( + CallInst* CI, ///< The CallInst to potentially auto-upgrade. + Function* newF = 0 ///< The new function for the call replacement. + ); /// Upgrade both the function and all the calls made to it, if that function /// needs to be upgraded. This is like a combination of the above two |