aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-07-07 23:43:39 +0000
committerOwen Anderson <resistor@mac.com>2009-07-07 23:43:39 +0000
commit321393f0a7411ff2b4102a393363ad09b582a15f (patch)
treed2b7eb3c4d7cab141ac78d108f78160dcc5d777c /include/llvm
parent83a32b460a2af4f7f814c337b3ab1ae6a2b897cb (diff)
downloadexternal_llvm-321393f0a7411ff2b4102a393363ad09b582a15f.zip
external_llvm-321393f0a7411ff2b4102a393363ad09b582a15f.tar.gz
external_llvm-321393f0a7411ff2b4102a393363ad09b582a15f.tar.bz2
LLVMContext-ification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74973 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Intrinsics.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Intrinsics.h b/include/llvm/Intrinsics.h
index 227eb5a..f2d6ef3 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.