[cfe-users] Clang Plugin Parallel Compilation Data Output Consolidation

2018-06-27 Thread Seboek, Janos via cfe-users
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

Re: [cfe-users] question about loop unrolling

2018-06-27 Thread George Burgess IV via cfe-users
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