[llvm-commits] CVS: llvm/include/llvm/Assembly/AutoUpgrade.h

Reid Spencer reid at x10sys.com
Fri May 19 12:08:09 PDT 2006



Changes in directory llvm/include/llvm/Assembly:

AutoUpgrade.h updated: 1.6 -> 1.7
---
Log message:

Fix some doxygen usage in these headers.


---
Diffs of the changes:  (+4 -2)

 AutoUpgrade.h |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)


Index: llvm/include/llvm/Assembly/AutoUpgrade.h
diff -u llvm/include/llvm/Assembly/AutoUpgrade.h:1.6 llvm/include/llvm/Assembly/AutoUpgrade.h:1.7
--- llvm/include/llvm/Assembly/AutoUpgrade.h:1.6	Sat Mar 25 12:42:45 2006
+++ llvm/include/llvm/Assembly/AutoUpgrade.h	Fri May 19 14:07:54 2006
@@ -43,9 +43,11 @@
   /// 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






More information about the llvm-commits mailing list