Displaying 2 results from an estimated 2 matches for "globalvarib".
Did you mean:
globalvarid
2011 Nov 21
2
[LLVMdev] A way to pass const char* arg without creating a GlobalVariable
Hi,
Is it possible to make up a ConstantArray containing a "const char*"
string and pass it directly to the function "char*" argument *without*
creating a GlobalVaribable?
I looked around and found the usual implementation is
array->globalVar->gep. If we omit globalVar & gep, then the argument
type would be [ i8 x N ], where N is set to the exact string length,
and the expected type is i8* => assertion.
In other words, in C we can submit constant va...
2011 Nov 21
0
[LLVMdev] A way to pass const char* arg without creating a GlobalVariable
...On Nov 20, 2011, at 16:58, "Dmitry N. Mikushin" <maemarcus at gmail.com> wrote:
> Hi,
>
> Is it possible to make up a ConstantArray containing a "const char*"
> string and pass it directly to the function "char*" argument *without*
> creating a GlobalVaribable?
> I looked around and found the usual implementation is
> array->globalVar->gep. If we omit globalVar & gep, then the argument
> type would be [ i8 x N ], where N is set to the exact string length,
> and the expected type is i8* => assertion.
> In other words, in C...