Displaying 2 results from an estimated 2 matches for "double_params".
2013 Nov 03
3
[LLVMdev] freeing alloca'd variables before function exits
Hi,
In my llvm code I want to create some function calls. The function prototype is as follows:
int memoize ( char *function_name,
int *int_params, unsigned num_ints,
double *double_params, unsigned num_doubles)
In order to create these calls I do the following for example:
%88 = alloca [7 x i8]
store volatile [7 x i8] c"ORACLE\00", [7 x i8]* %88
%89 = getelementptr [7 x i8]* %88, i32 0, i32 0
%90 = alloca [1 x i32]
%91 = getelementptr inbounds [1 x i32]* %90...
2013 Nov 04
0
[LLVMdev] freeing alloca'd variables before function exits
...0 AM, Ali Javadi <aj14889 at yahoo.com> wrote:
> Hi,
>
> In my llvm code I want to create some function calls. The function
> prototype is as follows:
>
> int memoize ( char *function_name,
> int *int_params, unsigned num_ints,
> double *double_params, unsigned num_doubles)
>
> In order to create these calls I do the following for example:
>
> %88 = *alloca* [7 x i8]
> store volatile [7 x i8] c"ORACLE\00", [7 x i8]* %88
> %89 = getelementptr [7 x i8]* %88, i32 0, i32 0
>
> %90 = *alloca* [1 x i32]
>...