commit | 823f74b4c379fb178e4cb70ffa97a463ad132f43 | [log] [tgz] |
---|---|---|
author | Chih-hung Hsieh <chh@google.com> | Sat Jan 25 00:22:11 2020 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Sat Jan 25 00:22:11 2020 +0000 |
tree | 3b2cb148b6f29de171cfe03dc22b318b7fc8ae07 | |
parent | 29546b91330ca004e298d8ee1d1c6993870128df [diff] | |
parent | 7d66bf9d901f5db995c991e07c0c4b89f73be01b [diff] |
Merge "Fix new clang compiler warning"
diff --git a/tests/fenv_test.cpp b/tests/fenv_test.cpp index d27808f..e983a1c 100644 --- a/tests/fenv_test.cpp +++ b/tests/fenv_test.cpp
@@ -27,7 +27,7 @@ volatile float m = 0x1.0p23f; volatile float x = f + m; ASSERT_FLOAT_EQ(expectation1, x); - x -= m; + x = x - m; ASSERT_EQ(expectation2, x); }