Displaying 2 results from an estimated 2 matches for "llvmvaluewithllvmvalue".
2007 Jan 23
2
[LLVMdev] Semi-random crashes seemingly related to Arguments
...for (i=0 ;i<argIndex;i++) {
++ArgX;
}
[NSString stringWithFormat:@"get argument[%d/%d]=
%x",argIndex,numArgs,ArgX]; // with this in place, it doesn't
crash
return [MPWLLVMValue
llvmValueWithLLVMValue:ArgX]; // wrap the arg
} else {
//--- error handling, irrelevant here...
[NSException raise:@"IndexOutOfBounds"
format:@"requesting argument %d when only %d
available",argIndex,numArgs];
return nil;
}
}
2007 Jan 23
0
[LLVMdev] Semi-random crashes seemingly related to Arguments
...lt;argIndex;i++) {
> ++ArgX;
> }
>
> [NSString stringWithFormat:@"get argument[%d/%d]=
> %x",argIndex,numArgs,ArgX]; // with this in place, it doesn't
> crash
> return [MPWLLVMValue
> llvmValueWithLLVMValue:ArgX]; // wrap the arg
> } else {
> //--- error handling, irrelevant here...
> [NSException raise:@"IndexOutOfBounds"
> format:@"requesting argument %d when only %d
> available",argIndex,numArgs];
> return nil;
>...