aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2014-10-20 12:14:27 +0200
committerBjörn Gustavsson <[email protected]>2014-10-20 12:14:27 +0200
commitc36765a19f48701c5216bc9eeb305aefe5031c71 (patch)
treee80485ce08826d6473d83860cb86a0e509ed4139 /lib/compiler/test
parent4a2fd35c20ec602a1dc8b28c0fe1906ac35a2b55 (diff)
parent9cb95b757c4f40c5b1ca1f0146ca98917d3f8668 (diff)
downloadotp-c36765a19f48701c5216bc9eeb305aefe5031c71.tar.gz
otp-c36765a19f48701c5216bc9eeb305aefe5031c71.tar.bz2
otp-c36765a19f48701c5216bc9eeb305aefe5031c71.zip
Merge branch 'tuncer/compiler/finalize-asm-deprecation/OTP-12100'
* tuncer/compiler/finalize-asm-deprecation/OTP-12100: compiler: finalize 18.x 'asm' deprecation
Diffstat (limited to 'lib/compiler/test')
-rw-r--r--lib/compiler/test/compile_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/test/compile_SUITE.erl b/lib/compiler/test/compile_SUITE.erl
index 8cb7d1b55b..128291dc67 100644
--- a/lib/compiler/test/compile_SUITE.erl
+++ b/lib/compiler/test/compile_SUITE.erl
@@ -365,7 +365,7 @@ listings_big(Config) when is_list(Config) ->
?line do_listing(Big, TargetDir, dkern, ".kernel"),
?line Target = filename:join(TargetDir, big),
- ?line {ok,big} = compile:file(Target, [asm,{outdir,TargetDir}]),
+ {ok,big} = compile:file(Target, [from_asm,{outdir,TargetDir}]),
%% Cleanup.
?line ok = file:delete(Target ++ ".beam"),