diff options
author | Björn Gustavsson <[email protected]> | 2017-11-30 06:00:00 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-12-04 10:10:16 +0100 |
commit | 924895c37df31913077d16c6baabfc70777f1b7f (patch) | |
tree | f820f7b5dba4665ce26acc452520e5c53271d297 /lib/compiler/src/beam_asm.erl | |
parent | 67fd015394185302f769378c2c5e47bddbdc22ea (diff) | |
download | otp-924895c37df31913077d16c6baabfc70777f1b7f.tar.gz otp-924895c37df31913077d16c6baabfc70777f1b7f.tar.bz2 otp-924895c37df31913077d16c6baabfc70777f1b7f.zip |
Clean up and comment code generation for basic blocks
Diffstat (limited to 'lib/compiler/src/beam_asm.erl')
-rw-r--r-- | lib/compiler/src/beam_asm.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/beam_asm.erl b/lib/compiler/src/beam_asm.erl index 3dff51d7f6..453e00fce3 100644 --- a/lib/compiler/src/beam_asm.erl +++ b/lib/compiler/src/beam_asm.erl @@ -24,7 +24,7 @@ -export([module/4]). -export([encode/2]). --export_type([fail/0,label/0,reg/0,src/0,module_code/0,function_name/0]). +-export_type([fail/0,label/0,reg/0,reg_num/0,src/0,module_code/0,function_name/0]). -import(lists, [map/2,member/2,keymember/3,duplicate/2,splitwith/2]). -include("beam_opcodes.hrl"). |