aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2011-02-21 16:53:34 +0100
committerBjörn Gustavsson <[email protected]>2011-08-16 15:22:23 +0200
commit053fb064496043207cfa807c900077f9bbc4c7d1 (patch)
treee0de0000953388727538571bdf2c1cda28a7b27b /lib/compiler
parent3347602be3c8a8bad3652c10e1e2db01315269e3 (diff)
downloadotp-053fb064496043207cfa807c900077f9bbc4c7d1.tar.gz
otp-053fb064496043207cfa807c900077f9bbc4c7d1.tar.bz2
otp-053fb064496043207cfa807c900077f9bbc4c7d1.zip
compiler: Don't create filenames starting with "./"
In the location information tables in the run-time system, source filenames that are the same as the module name plus ".erl" extension are not stored explicitly, thus saving memory. To take advantage of that optimization, avoid complicating the names of files in the current working directory; specifically, make sure that "./" is not prepended to the name.
Diffstat (limited to 'lib/compiler')
-rw-r--r--lib/compiler/src/compile.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl
index ce8a5bf864..ee7c87fced 100644
--- a/lib/compiler/src/compile.erl
+++ b/lib/compiler/src/compile.erl
@@ -1426,6 +1426,8 @@ iofile(File) when is_atom(File) ->
iofile(File) ->
{filename:dirname(File), filename:basename(File, ".erl")}.
+erlfile(".", Base, Suffix) ->
+ Base ++ Suffix;
erlfile(Dir, Base, Suffix) ->
filename:join(Dir, Base ++ Suffix).