aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/compile.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2013-01-18 11:48:34 +0100
committerBjörn Gustavsson <[email protected]>2013-01-18 11:48:34 +0100
commit35adf88290339ecdbbcd0a1290032d599bda26c4 (patch)
tree68a1446b553ee5b9fc36cb6aa97806a83d2bac65 /lib/compiler/src/compile.erl
parent7bde9f1f97e771eb2ee31395224dad1daf3748c4 (diff)
parentcdf80608685750e9e09069d8299a5b44ed53b2a0 (diff)
downloadotp-35adf88290339ecdbbcd0a1290032d599bda26c4.tar.gz
otp-35adf88290339ecdbbcd0a1290032d599bda26c4.tar.bz2
otp-35adf88290339ecdbbcd0a1290032d599bda26c4.zip
Merge branch 'bjorn/remove-parameterized-modules/OTP-10616'
* bjorn/remove-parameterized-modules/OTP-10616: Remove support for parameterized modules xref_SUITE: Don't test parameterized modules shell_SUITE: Don't test parameterized modules erl_expand_records_SUITE: Don't test parameterized modules erl_eval: Don't test parameterized modules
Diffstat (limited to 'lib/compiler/src/compile.erl')
-rw-r--r--lib/compiler/src/compile.erl1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl
index 2d1557fa5b..5f394f0b65 100644
--- a/lib/compiler/src/compile.erl
+++ b/lib/compiler/src/compile.erl
@@ -895,7 +895,6 @@ foldl_core_transforms(St, []) -> {ok,St}.
%%% Fetches the module name from a list of forms. The module attribute must
%%% be present.
-get_module([{attribute,_,module,{M,_As}} | _]) -> M;
get_module([{attribute,_,module,M} | _]) -> M;
get_module([_ | Rest]) ->
get_module(Rest).