diff options
author | Hans Bolinder <[email protected]> | 2014-10-28 15:25:24 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-04-30 12:14:29 +0200 |
commit | d20cf6b7d18fd45d6c1beaa39aa87be90080f30b (patch) | |
tree | 043ef60b97f7cb426dd8a581ea4a3430e3982147 /lib/compiler/src/beam_bsm.erl | |
parent | fe070a32f9f685ef4df1a5123e9328bb82e3947a (diff) | |
download | otp-d20cf6b7d18fd45d6c1beaa39aa87be90080f30b.tar.gz otp-d20cf6b7d18fd45d6c1beaa39aa87be90080f30b.tar.bz2 otp-d20cf6b7d18fd45d6c1beaa39aa87be90080f30b.zip |
compiler: Use module erl_anno
Diffstat (limited to 'lib/compiler/src/beam_bsm.erl')
-rw-r--r-- | lib/compiler/src/beam_bsm.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/src/beam_bsm.erl b/lib/compiler/src/beam_bsm.erl index 427b7071ac..2a15c1ddf3 100644 --- a/lib/compiler/src/beam_bsm.erl +++ b/lib/compiler/src/beam_bsm.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2013. All Rights Reserved. +%% Copyright Ericsson AB 2007-2015. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -615,7 +615,7 @@ collect_warnings_instr([_|Is], D, Acc) -> collect_warnings_instr([], _, Acc) -> Acc. add_warning(Term, Anno, Ws) -> - Line = abs(get_line(Anno)), + Line = get_line(Anno), File = get_file(Anno), [{File,[{Line,?MODULE,Term}]}|Ws]. |