Dear All,
I am Zahurul Islam. I have found LLVM always generate optimize byte code,
but I want to stop this. Actually, I want unoptimized LLVM assembly code
from C code.
Please help me to do that.
regards,
Zahurul Islam
BRAC University
Dhaka,Bangladesh
I am Zahurul Islam. I have found LLVM always generate optimize byte code,
but I want to stop this. Actually, I want unoptimized LLVM assembly code
from C code.
Passing "-Wa,-disable-opt -Wl,-disable-opt" will disable *all* cleanup and optimizations done at the llvm level, leaving you with the truly horrible code that you desire.