diff options
author | Björn Gustavsson <[email protected]> | 2011-08-23 05:39:50 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-11-17 10:09:51 +0100 |
commit | 6107d4123f23a48d77b1852df88cb0fee3a23539 (patch) | |
tree | b1e90e37a1758422c0c9f7b4730ffbc5e391f611 /erts | |
parent | ab75301714c3183172e3d315437ed2d62d735c4e (diff) | |
download | otp-6107d4123f23a48d77b1852df88cb0fee3a23539.tar.gz otp-6107d4123f23a48d77b1852df88cb0fee3a23539.tar.bz2 otp-6107d4123f23a48d77b1852df88cb0fee3a23539.zip |
code_SUITE clean-up: Remove experimental 'constant_pool' option
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/test/code_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/code_SUITE.erl b/erts/emulator/test/code_SUITE.erl index 61eeec5ffd..9d15184530 100644 --- a/erts/emulator/test/code_SUITE.erl +++ b/erts/emulator/test/code_SUITE.erl @@ -404,7 +404,7 @@ make_stub_many_funs(Config) when is_list(Config) -> constant_pools(Config) when is_list(Config) -> ?line Data = ?config(data_dir, Config), ?line File = filename:join(Data, "literals"), - ?line {ok,literals,Code} = compile:file(File, [report,binary,constant_pool]), + ?line {ok,literals,Code} = compile:file(File, [report,binary]), ?line {module,literals} = erlang:load_module(literals, make_sub_binary(Code)), |