Dear all,
Not sure if this is the right mailing list for my question but I hope you will
correct me if it's not.
I am developing a little Clang Plugin that compiles various data about a legacy
codebase during the compilation process. Unfortunately, compilation of the
legacy code is slow so it
It may be that clang added the `optnone` attribute to main when you built
it in (b): https://godbolt.org/g/WhM1UA . optnone, as the name implies,
requests that optimizations are skipped for a given function. If this is
the case, removing the optnone might make (b) do what you want.
For (c), I'd in