Displaying 1 result from an estimated 1 matches for "inshort".
Did you mean:
in_short
2018 Apr 23
2
llc tool followed by g++ : Abnormal behavior while compiling assembly to object file
Hi
I am executing following steps to convert assembly to object code.
llc -march=x86-64 -filetype=asm input.ll -o input.s
g++ -g -c -o input.s --input.o
inshort
ll --> llc --> .s -->g++ -->obj
original source was something like this
{
printf(" **** %s ****",str);
}
input.s turn out to be
movq .str at GOTPCREL(%rip),%rdi
movq .str.1 at GOTPCREL(%rip),%rsi
xorl %eax,%eax
movq %rdi,%r14
callq printf at PLT
While at Runtime
mo...