From 0e5f21c96b0337d4d3c93e1f9de033e3367dd458 Mon Sep 17 00:00:00 2001 From: Alex Voicu Date: Thu, 11 Oct 2018 00:08:09 +0100 Subject: [PATCH] Trailing whitespace is still not the final frontier. [ROCm/clr commit: 7874ec8aafe714ce7ac69789f3e7abf424e85d97] --- projects/clr/hipamd/tests/src/deviceLib/hipTestFMA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/clr/hipamd/tests/src/deviceLib/hipTestFMA.cpp b/projects/clr/hipamd/tests/src/deviceLib/hipTestFMA.cpp index 6350999084..44b96d518d 100644 --- a/projects/clr/hipamd/tests/src/deviceLib/hipTestFMA.cpp +++ b/projects/clr/hipamd/tests/src/deviceLib/hipTestFMA.cpp @@ -62,7 +62,7 @@ THE SOFTWARE. Check(fma(d, (double)f, (unsigned char)3) == doubleResult); Check(fma(d, (double)f, (short)3) == doubleResult); Check(fma(d, (double)f, (unsigned short)3) == doubleResult); - Check(fma(d, (double)f, (int)3) == doubleResult); + Check(fma(d, (double)f, (int)3) == doubleResult); Check(fma(d, (double)f, (unsigned int)3) == doubleResult); Check(fma(d, (double)f, (long)3) == doubleResult); Check(fma(d, (double)f, (unsigned long)3) == doubleResult);