Replace vera++ with clang-format (#4518)

JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik robert.fancsik@h-lab.eu
This commit is contained in:
Robert Fancsik
2021-11-05 14:15:47 +01:00
committed by GitHub
parent bc091e1742
commit badfdf4dba
564 changed files with 10195 additions and 15090 deletions
+2 -3
View File
@@ -49,7 +49,7 @@
* only cosh(0) = 1 is exact for finite x.
*/
#define one 1.0
#define one 1.0
#define half 0.5
#define huge 1.0e300
@@ -96,8 +96,7 @@ cosh (double x)
}
/* |x| in [log(maxdouble), overflowthresold] */
lx = ((1 >> 29) + (unsigned int) x);
if ((ix < 0x408633CE) ||
((ix == 0x408633ce) && (lx <= (unsigned) 0x8fb9f87d)))
if ((ix < 0x408633CE) || ((ix == 0x408633ce) && (lx <= (unsigned) 0x8fb9f87d)))
{
w = exp (half * fabs (x));
t = half * w;