Displaying 2 results from an estimated 2 matches for "l_00008120_1".
Did you mean:
l_00008120_
2012 Oct 04
2
[LLVMdev] Problems of manipulating GEP for struct type
...%3 = load %struct.ThreadContext** %2, align 4
call void @reach()
%4 = getelementptr inbounds %struct.ThreadContext* %3, i32 0, i32 1
call void @reach()
%5 = getelementptr inbounds [32 x i32]* %4, i32 0, i32 2
call void @reach()
* store i32 33056, i32* %5*
call void @reach()
br label %L_00008120_1
.....
--------------------------------------------------------------------------------------------------
Somehow, the storeInst is not successfully performed, it gets
segmentation fault, I wonder if I miss something important.
I pinpoint the problems by inserting call void @reach(), before...
2012 Oct 04
0
[LLVMdev] Problems of manipulating GEP for struct type
...gt; call void @reach()
> %4 = getelementptr inbounds %struct.ThreadContext* %3, i32 0, i32 1
> call void @reach()
> %5 = getelementptr inbounds [32 x i32]* %4, i32 0, i32 2
> call void @reach()
> * store i32 33056, i32* %5*
> call void @reach()
> br label %L_00008120_1
>
>
> .....
>
> --------------------------------------------------------------------------------------------------
>
>
> Somehow, the storeInst is not successfully performed, it gets
>
> segmentation fault, I wonder if I miss something important.
>
>
>
> I...