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

Unified Diff: fusl/arch/powerpc/syscall_arch.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/powerpc/syscall_arch.h
diff --git a/fusl/arch/powerpc/syscall_arch.h b/fusl/arch/powerpc/syscall_arch.h
index e7cb1a26d62505a7c27d3d0bab7bde3f986ea682..dba48a42a7999cbbda2df88d8dae5b38e4e5293b 100644
--- a/fusl/arch/powerpc/syscall_arch.h
+++ b/fusl/arch/powerpc/syscall_arch.h
@@ -1,6 +1,14 @@
#define __SYSCALL_LL_E(x) \
-((union { long long ll; long l[2]; }){ .ll = x }).l[0], \
-((union { long long ll; long l[2]; }){ .ll = x }).l[1]
+ ((union { \
+ long long ll; \
+ long l[2]; \
+ }){.ll = x}) \
+ .l[0], \
+ ((union { \
+ long long ll; \
+ long l[2]; \
+ }){.ll = x}) \
+ .l[1]
#define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x))
#undef SYSCALL_NO_INLINE

Powered by Google App Engine
This is Rietveld 408576698