1 // { dg-lto-do assemble }
2 // { dg-lto-options {{-g -flto}} }
11 class JIT : public ExecutionEngine
13 void runJITOnFunction (Function * F, MachineCodeInfo * MCI = 0);
15 class JITEventListener
21 virtual ~JITEventListener ();
27 JIT::runJITOnFunction (Function * F, MachineCodeInfo * MCI)
29 class MCIListener:public JITEventListener
31 MachineCodeInfo *const MCI;
33 MCIListener (MachineCodeInfo * mci):MCI (mci)