Displaying 2 results from an estimated 2 matches for "argindex".
Did you mean:
areindex
2007 Jan 23
2
[LLVMdev] Semi-random crashes seemingly related to Arguments
...its of weirdness about Arguments, for example
crashes or non-crashes depending on wether they had a name set or not
(all combinations of these two parameters), but those seem to be
quiescent at the time. Any ideas?
Thanks,
Marcel
------- my weird code.m ------------
-argumentAtIndex:(int)argIndex
{
Argument *ArgX;
if ( argIndex < numArgs ) {
int i;
ArgX = ((Function*)function)->arg_begin();
for (i=0 ;i<argIndex;i++) {
++ArgX;
}
[NSString stringWithFormat:...
2007 Jan 23
0
[LLVMdev] Semi-random crashes seemingly related to Arguments
...> crashes or non-crashes depending on wether they had a name set or not
> (all combinations of these two parameters), but those seem to be
> quiescent at the time. Any ideas?
>
> Thanks,
>
> Marcel
>
>
> ------- my weird code.m ------------
> -argumentAtIndex:(int)argIndex
> {
> Argument *ArgX;
> if ( argIndex < numArgs ) {
> int i;
> ArgX = ((Function*)function)->arg_begin();
> for (i=0 ;i<argIndex;i++) {
> ++ArgX;
> }
>
>...