Displaying 1 result from an estimated 1 matches for "1008675".
Did you mean:
008675
2010 Feb 13
2
[LLVMdev] Taking the address of an array?
Hello,
I'm trying to write an annotation pass which will pass a C function a
number of parameters including one of type [16 x i8*]. However, when I
write the C function, this parameter type is compiled to type i8**
because of the semantics of arrays in C. I think that to convert this
parameter to i8**, I would need to take the address of the array. Is
there any way I can do this? If