diff options
author | Kostis Sagonas <[email protected]> | 2013-03-10 16:13:43 +0100 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2013-03-10 16:13:43 +0100 |
commit | 0df9dd3ea4c26731dc18d33cc9ef41c2de5f6361 (patch) | |
tree | 5b81b37ff6ac94d3d139c282043aff26ac244eb2 /lib/hipe | |
parent | b4aebe5f242b33a6c412107e997f66cdc9418851 (diff) | |
download | otp-0df9dd3ea4c26731dc18d33cc9ef41c2de5f6361.tar.gz otp-0df9dd3ea4c26731dc18d33cc9ef41c2de5f6361.tar.bz2 otp-0df9dd3ea4c26731dc18d33cc9ef41c2de5f6361.zip |
Take out 'constant' type test and unnecessary type declaration
Diffstat (limited to 'lib/hipe')
-rw-r--r-- | lib/hipe/icode/hipe_icode.hrl | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/hipe/icode/hipe_icode.hrl b/lib/hipe/icode/hipe_icode.hrl index d76eebf78d..89d297ef01 100644 --- a/lib/hipe/icode/hipe_icode.hrl +++ b/lib/hipe/icode/hipe_icode.hrl @@ -23,12 +23,6 @@ %%===================================================================== %%--------------------------------------------------------------------- -%% THIS DOES NOT REALLY BELONG HERE -- PLEASE REMOVE ASAP! -%%--------------------------------------------------------------------- - --type ordset(T) :: [T]. - -%%--------------------------------------------------------------------- %% Include files needed for the compilation of this header file %%--------------------------------------------------------------------- @@ -67,7 +61,7 @@ | 'op_exact_eqeq_2' | 'suspend_msg_timeout'. -type icode_type_test() :: 'atom' | 'bignum' | 'binary' | 'bitstr' | 'boolean' - | 'cons' | 'constant' | 'fixnum' | 'float' + | 'cons' | 'fixnum' | 'float' | 'function' | 'function2' | 'integer' | 'list' | 'nil' | 'number' | 'pid' | 'port' | 'reference' | 'tuple' | {'atom', atom()} | {'integer', integer()} |