diff options
author | Sverker Eriksson <[email protected]> | 2015-04-10 19:12:48 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2015-04-10 19:12:48 +0200 |
commit | 9929a1fd151a78247f1d536f2a21843f310a4e3b (patch) | |
tree | c8c29c8fe01a0dd34347875111dc7fa483113d2e /erts/etc | |
parent | f54392bc3c811d44cef2b31c20cac9fb11bf38e1 (diff) | |
download | otp-9929a1fd151a78247f1d536f2a21843f310a4e3b.tar.gz otp-9929a1fd151a78247f1d536f2a21843f310a4e3b.tar.bz2 otp-9929a1fd151a78247f1d536f2a21843f310a4e3b.zip |
erts: Add etp_the_non_value
for a correct (non)value regardless of build type.
Diffstat (limited to 'erts/etc')
-rw-r--r-- | erts/etc/unix/etp-commands.in | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/erts/etc/unix/etp-commands.in b/erts/etc/unix/etp-commands.in index c117a62a21..ab2c1126df 100644 --- a/erts/etc/unix/etp-commands.in +++ b/erts/etc/unix/etp-commands.in @@ -146,14 +146,10 @@ define etp-1 etp-immediate-1 ($arg0) else # (($arg0) & 0x3) == 0 - if (($arg0) == 0x0) + if (($arg0) == etp_the_non_value) printf "<the non-value>" else - if (($arg0) == 0x4) - printf "<the non-value debug>" - else - etp-cp-1 ($arg0) - end + etp-cp-1 ($arg0) end end end |