summaryrefslogtreecommitdiff
path: root/src/jit/emit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/emit.cpp')
-rw-r--r--src/jit/emit.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/jit/emit.cpp b/src/jit/emit.cpp
index bad0528bd6..f579aee5ba 100644
--- a/src/jit/emit.cpp
+++ b/src/jit/emit.cpp
@@ -3221,8 +3221,11 @@ void emitter::emitDispIG(insGroup* ig, insGroup* igPrev, bool verbose)
{
printf("<END>");
}
- printf(", BB=%08XH (BB%02u)", dspPtr(igPh->igPhData->igPhBB),
- (igPh->igPhData->igPhBB != nullptr) ? igPh->igPhData->igPhBB->bbNum : 0);
+
+ if (igPh->igPhData->igPhBB != nullptr)
+ {
+ printf(", %s", igPh->igPhData->igPhBB->dspToString());
+ }
emitDispIGflags(igPh->igFlags);