diff options
author | Björn Gustavsson <[email protected]> | 2017-06-13 14:14:26 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-06-13 14:19:39 +0200 |
commit | f529828f540ad50cc157755fbd19d8b595ee07ee (patch) | |
tree | 02085b9f8dd050b35272e631623c7028297744ff /erts/emulator/test/unique_SUITE.erl | |
parent | a27c69e55f6f10d63135b6323060cf76b41509da (diff) | |
download | otp-f529828f540ad50cc157755fbd19d8b595ee07ee.tar.gz otp-f529828f540ad50cc157755fbd19d8b595ee07ee.tar.bz2 otp-f529828f540ad50cc157755fbd19d8b595ee07ee.zip |
Remove unused functions in test emulator test suites
Diffstat (limited to 'erts/emulator/test/unique_SUITE.erl')
-rw-r--r-- | erts/emulator/test/unique_SUITE.erl | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/erts/emulator/test/unique_SUITE.erl b/erts/emulator/test/unique_SUITE.erl index c5aa80c7b4..3b972b87b5 100644 --- a/erts/emulator/test/unique_SUITE.erl +++ b/erts/emulator/test/unique_SUITE.erl @@ -302,13 +302,6 @@ smaller_valid_uniqint(Int, UinqintInfo) -> smaller_valid_uniqint(Cand, UinqintInfo) end. -int32_to_bigendian_list(Int) -> - 0 = Int bsr 32, - [(Int bsr 24) band 16#ff, - (Int bsr 16) band 16#ff, - (Int bsr 8) band 16#ff, - Int band 16#ff]. - mk_uniqint(Int, #uniqint_info {min_int = MinInt, sched_bits = SchedBits} = _UinqintInfo) -> Int1 = Int - MinInt, |