aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hipe/icode
diff options
context:
space:
mode:
authorKostis Sagonas <[email protected]>2013-03-10 16:13:43 +0100
committerKostis Sagonas <[email protected]>2013-03-10 16:13:43 +0100
commit0df9dd3ea4c26731dc18d33cc9ef41c2de5f6361 (patch)
tree5b81b37ff6ac94d3d139c282043aff26ac244eb2 /lib/hipe/icode
parentb4aebe5f242b33a6c412107e997f66cdc9418851 (diff)
downloadotp-0df9dd3ea4c26731dc18d33cc9ef41c2de5f6361.tar.gz
otp-0df9dd3ea4c26731dc18d33cc9ef41c2de5f6361.tar.bz2
otp-0df9dd3ea4c26731dc18d33cc9ef41c2de5f6361.zip
Take out 'constant' type test and unnecessary type declaration
Diffstat (limited to 'lib/hipe/icode')
-rw-r--r--lib/hipe/icode/hipe_icode.hrl8
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()}