How do i get rid of call __x86.get_pc_thunk.ax
问题 I tried to compile and convert a very simple C program to assembly language. I am using Ubuntu and the OS type is 64 bit. This is the C Program. void add(); int main() { add(); return 0; } if i use gcc -S -m32 -fno-asynchronous-unwind-tables -o simple.S simple.c this is how my assembly source code File should look like: .file "main1.c" .text .globl main .type main, @function main: pushl %ebp movl %esp, %ebp andl $-16, %esp call add movl $0, %eax movl %ebp, %esp popl %ebp ret .size main, .