[llvm] r180840 - Correct comment: there is no numTys parameter any more now that this is using

Duncan Sands baldrick at free.fr
Wed May 1 00:54:55 PDT 2013


Author: baldrick
Date: Wed May  1 02:54:55 2013
New Revision: 180840

URL: http://llvm.org/viewvc/llvm-project?rev=180840&view=rev
Log:
Correct comment: there is no numTys parameter any more now that this is using
ArrayRef.

Modified:
    llvm/trunk/include/llvm/IR/Intrinsics.h

Modified: llvm/trunk/include/llvm/IR/Intrinsics.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/Intrinsics.h?rev=180840&r1=180839&r2=180840&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/Intrinsics.h (original)
+++ llvm/trunk/include/llvm/IR/Intrinsics.h Wed May  1 02:54:55 2013
@@ -63,14 +63,13 @@ namespace Intrinsic {
   /// Intrinsic::getDeclaration(M, ID) - Create or insert an LLVM Function
   /// declaration for an intrinsic, and return it.
   ///
-  /// The Tys and numTys parameters are for intrinsics with overloaded types
-  /// (e.g., those using iAny, fAny, vAny, or iPTRAny). For a declaration for an
-  /// overloaded intrinsic, Tys should point to an array of numTys pointers to
-  /// Type, and must provide exactly one type for each overloaded type in the
-  /// intrinsic.
+  /// The Tys parameter is for intrinsics with overloaded types (e.g., those
+  /// using iAny, fAny, vAny, or iPTRAny).  For a declaration of an overloaded
+  /// intrinsic, Tys must provide exactly one type for each overloaded type in
+  /// the intrinsic.
   Function *getDeclaration(Module *M, ID id,
                            ArrayRef<Type*> Tys = ArrayRef<Type*>());
-                           
+
   /// Map a GCC builtin name to an intrinsic ID.
   ID getIntrinsicForGCCBuiltin(const char *Prefix, const char *BuiltinName);
   





More information about the llvm-commits mailing list