Displaying 1 result from an estimated 1 matches for "leh_func_begin2".
Did you mean:
leh_func_begin0
2010 Jan 08
4
[LLVMdev] Inlining
....type foo, at function
foo: # @foo
.Leh_func_begin1:
.LBB1_0:
imull $7, %edi, %eax
ret
.size foo, .-foo
.Leh_func_end1:
.align 16
.globl main
.type main, at function
main: # @main
.Leh_func_begin2:
.LBB2_0:
subq $8, %rsp
.Llabel1:
movl $6, %edi
call foo
addq $8, %rsp
ret
.size main, .-main
.Leh_func_end2:
---
Even this monkey (thinks he) can see the constant 6 being passed to foo
in %edi. So far so good.
Now I tried to get it to inline, without much luck. Putting together
everythi...