In order for debuggers to be able to call an inline method, it must have
been instantiated somewhere. The dump() methods are usually not used, so
add an instantiation in debug builds.
This allows to call .dump() on any isl++ object from the gcc/gdb and
Visual Studio debugger in debug builds with assertions enabled.
In optimized builds, even with assertions enabled, the dump() methods
are also inlined in GICHelper.cpp, so no externally visible symbols
will be available either. This would require e.g.
attribute((noinline)) in isl-noexceptions.cpp which in turn would
require a translation unit they are instatiated in, making the isl C++
binding loose its header-only property.