diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-07 23:43:39 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-07 23:43:39 +0000 |
commit | f81b57694b3c34a79b1464ffd21e6768c8d22662 (patch) | |
tree | d2b7eb3c4d7cab141ac78d108f78160dcc5d777c /include/llvm/Intrinsics.h | |
parent | bc8a94540a65907472bf6d6e43c8fea864116cf5 (diff) |
LLVMContext-ification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74973 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Intrinsics.h')
-rw-r--r-- | include/llvm/Intrinsics.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Intrinsics.h b/include/llvm/Intrinsics.h index 227eb5a5b7..f2d6ef32cb 100644 --- a/include/llvm/Intrinsics.h +++ b/include/llvm/Intrinsics.h @@ -23,6 +23,7 @@ namespace llvm { class Type; class FunctionType; class Function; +class LLVMContext; class Module; class AttrListPtr; @@ -47,7 +48,8 @@ namespace Intrinsic { /// Intrinsic::getType(ID) - Return the function type for an intrinsic. /// - const FunctionType *getType(ID id, const Type **Tys = 0, unsigned numTys = 0); + const FunctionType *getType(LLVMContext &Context, ID id, + const Type **Tys = 0, unsigned numTys = 0); /// Intrinsic::isOverloaded(ID) - Returns true if the intrinsic can be /// overloaded. |