aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/beam_debug.c
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-08-21 07:18:49 +0200
committerBjörn Gustavsson <[email protected]>2017-08-23 05:57:39 +0200
commit8fc304e1e0c4a36dcb5abbe7a51de63ddc2cb285 (patch)
tree017e46391fde5315751d9a469c0085f3dd1ac383 /erts/emulator/beam/beam_debug.c
parent5725b59f0c14a3bdc665f8543a30a8a5985a3d3b (diff)
downloadotp-8fc304e1e0c4a36dcb5abbe7a51de63ddc2cb285.tar.gz
otp-8fc304e1e0c4a36dcb5abbe7a51de63ddc2cb285.tar.bz2
otp-8fc304e1e0c4a36dcb5abbe7a51de63ddc2cb285.zip
Introduce more packable types
The 'I' type can be replaced with 't' if we know that the value will fit in 16 bits. The 'P' type can be replaced with 'Q' if it is used for deallocating a stack frame.
Diffstat (limited to 'erts/emulator/beam/beam_debug.c')
-rw-r--r--erts/emulator/beam/beam_debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/erts/emulator/beam/beam_debug.c b/erts/emulator/beam/beam_debug.c
index 06b9db2877..49414ae8fc 100644
--- a/erts/emulator/beam/beam_debug.c
+++ b/erts/emulator/beam/beam_debug.c
@@ -526,9 +526,9 @@ print_op(fmtfn_t to, void *to_arg, int op, int size, BeamInstr* addr)
case 'I':
case 'W':
switch (op) {
- case op_i_gc_bif1_jWsId:
- case op_i_gc_bif2_jWIssd:
- case op_i_gc_bif3_jWIssd:
+ case op_i_gc_bif1_jWstd:
+ case op_i_gc_bif2_jWtssd:
+ case op_i_gc_bif3_jWtssd:
{
const ErtsGcBif* p;
BifFunction gcf = (BifFunction) *ap;