Displaying 2 results from an estimated 2 matches for "l_00000000_".
2012 Oct 04
2
[LLVMdev] Problems of manipulating GEP for struct type
Hi,
I use JIT to execute the following LLVM IR,
------------------------------------------------------------------------------------------------------------
define internal fastcc i32 @L_00008120_(%struct.ThreadContext* %ThreadCtx) {
L_00000000_:
%0 = alloca i32
%1 = alloca i32
%2 = alloca %struct.ThreadContext*, align 4
store %struct.ThreadContext* %ThreadCtx, %struct.ThreadContext** %2
call void @reach()
br label %L_00008120_
L_00008120_: ; preds = %L_00000000_
call void @reach()
%3 =...
2012 Oct 04
0
[LLVMdev] Problems of manipulating GEP for struct type
...gt;
> ------------------------------------------------------------------------------------------------------------
> define internal fastcc i32 @L_00008120_(%struct.ThreadContext* %ThreadCtx) {
does the caller also specify the fastcc calling convention when calling this?
Ciao, Duncan.
> L_00000000_:
> %0 = alloca i32
> %1 = alloca i32
> %2 = alloca %struct.ThreadContext*, align 4
> store %struct.ThreadContext* %ThreadCtx, %struct.ThreadContext** %2
> call void @reach()
> br label %L_00008120_
>
> L_00008120_: ; pre...