summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnders Waldenborg <anders@0x63.nu>2013-10-17 18:51:01 +0000
committerAnders Waldenborg <anders@0x63.nu>2013-10-17 18:51:01 +0000
commitf4094e5ed7387b29eda8d9a7865f6b5dfd47ce82 (patch)
tree3ab6f70e35a6f95a932590488beb556de5666a7b /include
parent4d1a9256752048f34c6091cc145fce9f89d20985 (diff)
downloadllvm-f4094e5ed7387b29eda8d9a7865f6b5dfd47ce82.tar.gz
llvm-f4094e5ed7387b29eda8d9a7865f6b5dfd47ce82.tar.bz2
llvm-f4094e5ed7387b29eda8d9a7865f6b5dfd47ce82.tar.xz
llvm-c: Add LLVMIntPtrType{,ForAS}InContext
All of the Core API functions have versions which accept explicit context, in addition to ones which work on global context. This commit adds functions which accept explicit context to the Target API for consistency. Patch by Peter Zotov Differential Revision: http://llvm-reviews.chandlerc.com/D1912 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192913 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm-c/Target.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/llvm-c/Target.h b/include/llvm-c/Target.h
index 80fc3e5ad7..27eb14748d 100644
--- a/include/llvm-c/Target.h
+++ b/include/llvm-c/Target.h
@@ -186,6 +186,15 @@ LLVMTypeRef LLVMIntPtrType(LLVMTargetDataRef);
See the method llvm::DataLayout::getIntPtrType. */
LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef, unsigned AS);
+/** Returns the integer type that is the same size as a pointer on a target.
+ See the method llvm::DataLayout::getIntPtrType. */
+LLVMTypeRef LLVMIntPtrTypeInContext(LLVMContextRef, LLVMTargetDataRef);
+
+/** Returns the integer type that is the same size as a pointer on a target.
+ This version allows the address space to be specified.
+ See the method llvm::DataLayout::getIntPtrType. */
+LLVMTypeRef LLVMIntPtrTypeForASInContext(LLVMContextRef, LLVMTargetDataRef, unsigned AS);
+
/** Computes the size of a type in bytes for a target.
See the method llvm::DataLayout::getTypeSizeInBits. */
unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef, LLVMTypeRef);