diff options
author | Fredrik Gustafsson <[email protected]> | 2012-08-28 08:57:38 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2012-08-28 08:57:38 +0200 |
commit | fc0810e88f780092f009fef43fc525c958981770 (patch) | |
tree | 1afa2da2a8cd704eb8643fc116007cf3aaa4f9a2 /lib/hipe/icode/hipe_icode.hrl | |
parent | 74dc668c916ab3a5c7ae41e750103999c4331b86 (diff) | |
parent | 7923e44a7e70807e67f8dc4b6186eb245e830e0b (diff) | |
download | otp-fc0810e88f780092f009fef43fc525c958981770.tar.gz otp-fc0810e88f780092f009fef43fc525c958981770.tar.bz2 otp-fc0810e88f780092f009fef43fc525c958981770.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/hipe/icode/hipe_icode.hrl')
-rw-r--r-- | lib/hipe/icode/hipe_icode.hrl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/hipe/icode/hipe_icode.hrl b/lib/hipe/icode/hipe_icode.hrl index 65deaf6d7c..3b21276209 100644 --- a/lib/hipe/icode/hipe_icode.hrl +++ b/lib/hipe/icode/hipe_icode.hrl @@ -64,9 +64,9 @@ -type icode_if_op() :: '>' | '<' | '>=' | '=<' | '=:=' | '=/=' | '==' | '/=' | 'fixnum_eq' | 'fixnum_neq' | 'fixnum_lt' | 'fixnum_le' | 'fixnum_ge' | 'fixnum_gt' - | 'suspend_msg_timeout'. + | 'op_exact_eqeq_2' | 'suspend_msg_timeout'. --type icode_type_test() :: 'atom' | 'bignum' | 'binary' | 'bitrst' | 'boolean' +-type icode_type_test() :: 'atom' | 'bignum' | 'binary' | 'bitstr' | 'boolean' | 'cons' | 'constant' | 'fixnum' | 'float' | 'function' | 'function2' | 'integer' | 'list' | 'nil' | 'number' | 'pid' | 'port' | 'reference' | 'tuple' @@ -88,7 +88,7 @@ -type icode_call_type() :: 'local' | 'primop' | 'remote'. -type icode_exit_class() :: 'error' | 'exit' | 'rethrow' | 'throw'. --type icode_comment_text() :: atom() | string() | {atom(), term()}. +-type icode_comment_text() :: atom() | string(). -type icode_info() :: [{'arg_types', [erl_types:erl_type()]}]. |