diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-01-10 14:41:10 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-01-10 14:41:10 +0100 |
commit | 3ee63ae7b498a1d7d232b0dcdcffb7f7f30c9579 (patch) | |
tree | 62563b36beebe782b93e9cda0916f892f5b15569 /lib/hipe | |
parent | d8ca0eb6de482a9a4bb5d67bc33232352c3ec83e (diff) | |
parent | dc70f3bb56c7b09b1bcf0d4374741f9abbf8a555 (diff) | |
download | otp-3ee63ae7b498a1d7d232b0dcdcffb7f7f30c9579.tar.gz otp-3ee63ae7b498a1d7d232b0dcdcffb7f7f30c9579.tar.bz2 otp-3ee63ae7b498a1d7d232b0dcdcffb7f7f30c9579.zip |
Merge branch 'egil/revert-type-information' into maint
* egil/revert-type-information:
syntax_tools: Remove warnings of missing types
hipe: Remove warnings of missing types in records
syntax_tools: Suppress warning of unused variable
Revert "hipe: Add type information to cfg_info record"
Revert "syntax_tool: Add missing type information"
Diffstat (limited to 'lib/hipe')
-rw-r--r-- | lib/hipe/flow/Makefile | 2 | ||||
-rw-r--r-- | lib/hipe/flow/cfg.hrl | 5 | ||||
-rw-r--r-- | lib/hipe/icode/Makefile | 2 | ||||
-rw-r--r-- | lib/hipe/opt/Makefile | 2 |
4 files changed, 5 insertions, 6 deletions
diff --git a/lib/hipe/flow/Makefile b/lib/hipe/flow/Makefile index 02f610587b..bbe8ef8666 100644 --- a/lib/hipe/flow/Makefile +++ b/lib/hipe/flow/Makefile @@ -65,7 +65,7 @@ DOC_FILES= $(MODULES:%=$(DOCS)/%.html) include ../native.mk -ERL_COMPILE_FLAGS += +warn_exported_vars +warn_missing_spec +warn_untyped_record +ERL_COMPILE_FLAGS += +warn_exported_vars +warn_missing_spec # +warn_untyped_record # ---------------------------------------------------- # Targets diff --git a/lib/hipe/flow/cfg.hrl b/lib/hipe/flow/cfg.hrl index 79fe6162ad..62f47a707a 100644 --- a/lib/hipe/flow/cfg.hrl +++ b/lib/hipe/flow/cfg.hrl @@ -36,9 +36,8 @@ is_closure :: boolean(), closure_arity :: arity(), is_leaf :: boolean(), - params :: any(), %% any() since type information is missing? - info = [] :: list() %% this field seems not needed; take out?? - }). + params, % :: list() + info = []}). %% this field seems not needed; take out?? %% %% Data is a triple with a dict of constants, a list of labels and an integer diff --git a/lib/hipe/icode/Makefile b/lib/hipe/icode/Makefile index eced90b0ec..bd6436c8b3 100644 --- a/lib/hipe/icode/Makefile +++ b/lib/hipe/icode/Makefile @@ -83,7 +83,7 @@ DOC_FILES= $(DOC_MODULES:%=$(DOCS)/%.html) include ../native.mk -ERL_COMPILE_FLAGS += +warn_unused_import +warn_missing_spec +warn_untyped_record +ERL_COMPILE_FLAGS += +warn_unused_import +warn_missing_spec # +warn_untyped_record # ---------------------------------------------------- # Targets diff --git a/lib/hipe/opt/Makefile b/lib/hipe/opt/Makefile index 74fde26c0b..4596201801 100644 --- a/lib/hipe/opt/Makefile +++ b/lib/hipe/opt/Makefile @@ -63,7 +63,7 @@ DOC_FILES= $(MODULES:%=$(DOCS)/%.html) include ../native.mk -ERL_COMPILE_FLAGS += +warn_exported_vars +warn_missing_spec +warn_untyped_record +ERL_COMPILE_FLAGS += +warn_exported_vars +warn_missing_spec # +warn_untyped_record # ---------------------------------------------------- # Targets |