I am compiling code with clang with -O4 optimization. However, I want to disable inlining of functions. I have my own LLVM pass that injects some code to the generated code. After my pass, I want to enable the inlining of functions. How can I do that.
I am compiling code with clang with -O4 optimization. However, I want to disable
Share
You can use opt which says it can run passes in any order.