Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2012)

Unified Diff: fusl/arch/mips/bits/fenv.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/arch/mips/bits/fenv.h
diff --git a/fusl/arch/mips/bits/fenv.h b/fusl/arch/mips/bits/fenv.h
index 589e71c1bfc02ab5b7ec1a900c47038f04d57c27..6f3a93e158fa480dc1ce5ed1d34af71a914e5f39 100644
--- a/fusl/arch/mips/bits/fenv.h
+++ b/fusl/arch/mips/bits/fenv.h
@@ -1,25 +1,23 @@
#ifdef __mips_soft_float
#define FE_ALL_EXCEPT 0
-#define FE_TONEAREST 0
+#define FE_TONEAREST 0
#else
-#define FE_INEXACT 4
-#define FE_UNDERFLOW 8
-#define FE_OVERFLOW 16
-#define FE_DIVBYZERO 32
-#define FE_INVALID 64
+#define FE_INEXACT 4
+#define FE_UNDERFLOW 8
+#define FE_OVERFLOW 16
+#define FE_DIVBYZERO 32
+#define FE_INVALID 64
#define FE_ALL_EXCEPT 124
-#define FE_TONEAREST 0
+#define FE_TONEAREST 0
#define FE_TOWARDZERO 1
-#define FE_UPWARD 2
-#define FE_DOWNWARD 3
+#define FE_UPWARD 2
+#define FE_DOWNWARD 3
#endif
typedef unsigned short fexcept_t;
-typedef struct {
- unsigned __cw;
-} fenv_t;
+typedef struct { unsigned __cw; } fenv_t;
-#define FE_DFL_ENV ((const fenv_t *) -1)
+#define FE_DFL_ENV ((const fenv_t*)-1)

Powered by Google App Engine
This is Rietveld 408576698