Re: [cfe-users] clang-tblgen not installed

2019-09-06 Thread Richard Smith via cfe-users
On Thu, 5 Sep 2019 at 20:19, Alex Biddulph via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi, > > Is there a reason why clang-tblgen is not installed with all of the > other clang binaries? > > According to > http://releases.llvm.org/8.0.0/docs/HowToCrossCompileLLVM.html > clang-tblgen (along

[cfe-users] Debugging LLVM IR code

2019-09-06 Thread Ayush Mittal via cfe-users
Hello Clangers, I've a Instrumentation pass code which add some more checks (or statements) into the entry block (normal C functions). How could I debug it or add some debug statements in IR code to make sure if the control is flowing through that path or not. Thanks and Regards.