mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-02 02:14:23 +00:00
add a 'LLVMConstIntOfArbitraryPrecision' api to the C api,
patch by Greg Pfeil! llvm-svn: 119989
This commit is contained in:
parent
41281bd30f
commit
d935e210ee
@ -547,6 +547,9 @@ LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count);
|
||||
/* Operations on scalar constants */
|
||||
LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
|
||||
LLVMBool SignExtend);
|
||||
LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
|
||||
unsigned NumWords,
|
||||
const uint64_t Words[]);
|
||||
LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char *Text,
|
||||
uint8_t Radix);
|
||||
LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char *Text,
|
||||
|
@ -547,6 +547,14 @@ LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
|
||||
return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), N, SignExtend != 0));
|
||||
}
|
||||
|
||||
LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
|
||||
unsigned NumWords,
|
||||
const uint64_t Words[]) {
|
||||
IntegerType *Ty = unwrap<IntegerType>(IntTy);
|
||||
return wrap(ConstantInt::get(Ty->getContext(),
|
||||
APInt(Ty->getBitWidth(), NumWords, Words)));
|
||||
}
|
||||
|
||||
LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char Str[],
|
||||
uint8_t Radix) {
|
||||
return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str),
|
||||
|
Loading…
x
Reference in New Issue
Block a user