aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Assembly/AutoUpgrade.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Assembly/AutoUpgrade.h')
-rw-r--r--include/llvm/Assembly/AutoUpgrade.h6
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