summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2013-05-01 07:54:55 +0000
committerDuncan Sands <baldrick@free.fr>2013-05-01 07:54:55 +0000
commit8c3a54998bcbdd10e1997519ba1c17b7f0850709 (patch)
tree985c4a0793fffd470b5b6d25f076fa27cab99257 /include
parenta4fa74e38163ec3dc652f31ddac2c08e4a05889c (diff)
downloadllvm-8c3a54998bcbdd10e1997519ba1c17b7f0850709.tar.gz
llvm-8c3a54998bcbdd10e1997519ba1c17b7f0850709.tar.bz2
llvm-8c3a54998bcbdd10e1997519ba1c17b7f0850709.tar.xz
Correct comment: there is no numTys parameter any more now that this is using
ArrayRef. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180840 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/IR/Intrinsics.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/include/llvm/IR/Intrinsics.h b/include/llvm/IR/Intrinsics.h
index c97cd91d73..e69ddec1e3 100644
--- a/include/llvm/IR/Intrinsics.h
+++ b/include/llvm/IR/Intrinsics.h
@@ -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);