diff options
author | Björn Gustavsson <[email protected]> | 2011-08-11 10:42:02 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-10-11 11:46:35 +0200 |
commit | 09a5930d116bc4ebfac9404845bed8181662a0db (patch) | |
tree | 6efdeb47f6e7d622488dfc30d22d3564f36c45ee | |
parent | 39c0668121ff347877090e3ed237214f873c3e55 (diff) | |
download | otp-09a5930d116bc4ebfac9404845bed8181662a0db.tar.gz otp-09a5930d116bc4ebfac9404845bed8181662a0db.tar.bz2 otp-09a5930d116bc4ebfac9404845bed8181662a0db.zip |
Print transformtions sorted on the name of the first instruction
-rwxr-xr-x | erts/emulator/utils/beam_makeops | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/utils/beam_makeops b/erts/emulator/utils/beam_makeops index fa3f3ed5e3..58c36c3bdc 100755 --- a/erts/emulator/utils/beam_makeops +++ b/erts/emulator/utils/beam_makeops @@ -1322,7 +1322,7 @@ sub tr_gen { # my($offset) = 0; print "Uint op_transform[] = {\n"; - foreach $key (keys %gen_transform) { + foreach $key (sort keys %gen_transform) { $gen_transform_offset{$key} = $offset; my @instr = @{$gen_transform{$key}}; |