diff options
author | Björn Gustavsson <[email protected]> | 2010-04-15 10:19:02 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-04-15 16:42:46 +0200 |
commit | feed8f6669ee2ca84139d297056857c6b05fa351 (patch) | |
tree | 1e3433bf471582756831cc8ac1d1e2e187df28b5 /lib/compiler/test/float_SUITE.erl | |
parent | c34ad2d537e41c9b31e240aa1e6fadd994115a16 (diff) | |
download | otp-feed8f6669ee2ca84139d297056857c6b05fa351.tar.gz otp-feed8f6669ee2ca84139d297056857c6b05fa351.tar.bz2 otp-feed8f6669ee2ca84139d297056857c6b05fa351.zip |
compiler tests: Eliminate "result of expression is ignored" warnings
Diffstat (limited to 'lib/compiler/test/float_SUITE.erl')
-rw-r--r-- | lib/compiler/test/float_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/test/float_SUITE.erl b/lib/compiler/test/float_SUITE.erl index 3d2dbf47e9..0d05aa70c2 100644 --- a/lib/compiler/test/float_SUITE.erl +++ b/lib/compiler/test/float_SUITE.erl @@ -41,7 +41,7 @@ float_sub(A)-> float_mul(0, _, _)-> ok; float_mul(Iter, A, B) when is_float(A), is_float(B) -> - A*B, + _ = A*B, float_mul(Iter-1, A, B). %% Thanks to Mikael Pettersson and Tobias Lindahl (HiPE). |