diff options
author | Björn Gustavsson <[email protected]> | 2016-09-29 12:17:58 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-09-29 12:17:58 +0200 |
commit | 3651c6bb09319bd4e87892dc9ae0e6620a5a3e8d (patch) | |
tree | d1e312ba372e578f8adb0be5c98281df68c61abb /lib/compiler/src/v3_kernel.hrl | |
parent | 81082ce34fcaa97b0ef66a5e445fdbf2e3b9644c (diff) | |
parent | 05130e485558919344584f9bbfa057efdca94c3d (diff) | |
download | otp-3651c6bb09319bd4e87892dc9ae0e6620a5a3e8d.tar.gz otp-3651c6bb09319bd4e87892dc9ae0e6620a5a3e8d.tar.bz2 otp-3651c6bb09319bd4e87892dc9ae0e6620a5a3e8d.zip |
Merge branch 'bjorn/compiler/misc'
* bjorn/compiler/misc:
sys_core_fold: Run optimizations to a fixpoint
sys_core_fold: Improve case optimization
sys_core_fold: Correct scope verification code
core_pp: Correct printing of map updates
Simplify handling of internal BIFs
v3_life: Eliminate special handling of guards
Simplify beam_utils
bs_match_SUITE: Add a test case for beam_utils
bif_SUITE: Cover the remaining uncovered lines
erl_bifs: Remove error_logger:warning_map/0 as a safe BIF
beam_validator: Correct reporting of y register number
beam_jump: Don't try to handle a label at the very end
beam_jump: Simplify eliminate_fallthroughs/2
beam_listing: Remove support for listing sys_pre_expand format
Diffstat (limited to 'lib/compiler/src/v3_kernel.hrl')
-rw-r--r-- | lib/compiler/src/v3_kernel.hrl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/src/v3_kernel.hrl b/lib/compiler/src/v3_kernel.hrl index 5216a1a620..1169a69117 100644 --- a/lib/compiler/src/v3_kernel.hrl +++ b/lib/compiler/src/v3_kernel.hrl @@ -66,6 +66,7 @@ -record(k_receive_next, {anno=[]}). -record(k_try, {anno=[],arg,vars,body,evars,handler,ret=[]}). -record(k_try_enter, {anno=[],arg,vars,body,evars,handler}). +-record(k_protected, {anno=[],arg,ret=[]}). -record(k_catch, {anno=[],body,ret=[]}). -record(k_guard_match, {anno=[],vars,body,ret=[]}). |