Initially, in https://reviews.llvm.org/D44890, I had these defined as
empty functions when the respective event listener was not built
in. As done in that commit, that wasn't correct, because it was a ODR
violation. Krasimir hot-fixed that in r333265, but that wasn't quite
right either, because it'd lead to the symbol not being available.
Instead just move the function definition unconditionally to
ExecutionEngineBindings.cpp. That solves both problems. No ifdefs
needed, the ones in JITEventListener are sufficient.