diff options
author | Björn Gustavsson <[email protected]> | 2010-11-22 12:03:19 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-11-22 12:03:19 +0100 |
commit | 4819bd39799777427965963625f034e30673b034 (patch) | |
tree | 1d868d35eb94ebdd30c84c90df5baa7c14164fd4 /lib/hipe/main/hipe_main.erl | |
parent | f555bf55aabd9b80f48daaf1f8ae041c8aa06f9e (diff) | |
parent | 6083a1a9e553eac8a0b33697964fadfd17d302ca (diff) | |
download | otp-4819bd39799777427965963625f034e30673b034.tar.gz otp-4819bd39799777427965963625f034e30673b034.tar.bz2 otp-4819bd39799777427965963625f034e30673b034.zip |
Merge branch 'ks/hipe-patches' into dev
* ks/hipe-patches:
hipe: Update types and specs
Diffstat (limited to 'lib/hipe/main/hipe_main.erl')
-rw-r--r-- | lib/hipe/main/hipe_main.erl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/hipe/main/hipe_main.erl b/lib/hipe/main/hipe_main.erl index fe9bc83fd2..e81642fb33 100644 --- a/lib/hipe/main/hipe_main.erl +++ b/lib/hipe/main/hipe_main.erl @@ -1,20 +1,20 @@ %% -*- erlang-indent-level: 2 -*- %% %% %CopyrightBegin% -%% -%% Copyright Ericsson AB 2001-2009. All Rights Reserved. -%% +%% +%% Copyright Ericsson AB 2001-2010. All Rights Reserved. +%% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in %% compliance with the License. You should have received a copy of the %% Erlang Public License along with this software. If not, it can be %% retrieved online at http://www.erlang.org/. -%% +%% %% Software distributed under the License is distributed on an "AS IS" %% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See %% the License for the specific language governing rights and limitations %% under the License. -%% +%% %% %CopyrightEnd% %% %% @doc This is the HiPE compiler's main "loop". @@ -102,7 +102,7 @@ compile_icode(MFA, LinearIcode0, Options, Servers, DebugState) -> ?opt_start_timer("Icode"), LinearIcode1 = icode_no_comment(LinearIcode0, Options), IcodeCfg0 = icode_linear_to_cfg(LinearIcode1, Options), - %%hipe_icode_cfg:pp(IcodeCfg1), + %% hipe_icode_cfg:pp(IcodeCfg0), IcodeCfg1 = icode_handle_exceptions(IcodeCfg0, MFA, Options), IcodeCfg3 = icode_inline_bifs(IcodeCfg1, Options), pp(IcodeCfg3, MFA, icode, pp_icode, Options, Servers), |