| Index: tests/MathTest.cpp
|
| diff --git a/tests/MathTest.cpp b/tests/MathTest.cpp
|
| index 3c2bc644073ddcd211e732c645a28fd894a4b00d..e6419611fe1570e7de5b37795919b785effd394f 100644
|
| --- a/tests/MathTest.cpp
|
| +++ b/tests/MathTest.cpp
|
| @@ -561,7 +561,7 @@ DEF_TEST(Math, reporter) {
|
| SkFixed numer = rand.nextS();
|
| SkFixed denom = rand.nextS();
|
| SkFixed result = SkFixedDiv(numer, denom);
|
| - int64_t check = ((int64_t)numer << 16) / denom;
|
| + int64_t check = (int64_t)numer * (1 << 16) / denom;
|
|
|
| (void)SkCLZ(numer);
|
| (void)SkCLZ(denom);
|
|
|