diff options
author | Björn Gustavsson <[email protected]> | 2011-11-18 14:09:29 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-11-28 14:07:20 +0100 |
commit | 0aa3a8200025ae32c5aba11be5229fff19d03c7f (patch) | |
tree | 634d38bd382ff97593c7b198733bd4d14d9c3b02 /lib/hipe/tools/Makefile | |
parent | 02c869c58f226e8ea16de3d35e0e53d023376cb7 (diff) | |
download | otp-0aa3a8200025ae32c5aba11be5229fff19d03c7f.tar.gz otp-0aa3a8200025ae32c5aba11be5229fff19d03c7f.tar.bz2 otp-0aa3a8200025ae32c5aba11be5229fff19d03c7f.zip |
hipe: Remove single function compilation
Compiling single functions (as opposed to whole modules) to native
code complicates code management in HiPE. It would also vastly
complicate whole-module optimizations, such as returning multiple
return values instead of tuples within a module.
As a first step, remove the external interface for the single
compilation feature. In the future, there are many things that
could be restructured and simplified.
Diffstat (limited to 'lib/hipe/tools/Makefile')
-rw-r--r-- | lib/hipe/tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/tools/Makefile b/lib/hipe/tools/Makefile index 0eaa3a7b05..e9745a6767 100644 --- a/lib/hipe/tools/Makefile +++ b/lib/hipe/tools/Makefile @@ -42,7 +42,7 @@ RELSYSDIR = $(RELEASE_PATH)/lib/hipe-$(VSN) # ---------------------------------------------------- # Target Specs # ---------------------------------------------------- -MODULES = hipe_tool hipe_profile hipe_ceach hipe_jit +MODULES = hipe_tool hipe_profile hipe_jit # hipe_timer HRL_FILES= |