summaryrefslogtreecommitdiff
path: root/lib/compiler/test/beam_type_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <bjorn@erlang.org>2018-11-29 11:43:51 +0100
committerBjörn Gustavsson <bjorn@erlang.org>2018-11-29 11:49:30 +0100
commitd409ab76416108936610e043fa14a0a0f0d314af (patch)
tree386e7b39b601f0c2f427c40ccf189df0ce668af2 /lib/compiler/test/beam_type_SUITE.erl
parentd3ecc9efa4e46af8659ad8189802024834afe410 (diff)
downloaderlang-d409ab76416108936610e043fa14a0a0f0d314af.tar.gz
Eliminate warnings for unused variables
Diffstat (limited to 'lib/compiler/test/beam_type_SUITE.erl')
-rw-r--r--lib/compiler/test/beam_type_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/test/beam_type_SUITE.erl b/lib/compiler/test/beam_type_SUITE.erl
index a4459b95bf..918e45ff6f 100644
--- a/lib/compiler/test/beam_type_SUITE.erl
+++ b/lib/compiler/test/beam_type_SUITE.erl
@@ -116,8 +116,8 @@ do_integers_4(_, _, Res) ->
Res.
do_integers_5(X0, Y0) ->
- %% X and Y will use the same register.
- X = X0 band 1,
+ %% _X and Y will use the same register.
+ _X = X0 band 1,
Y = Y0 band 3,
case Y of
0 -> zero;