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

Side by Side 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 unified diff | Download patch
OLDNEW
1 #define __SYSCALL_LL_E(x) \ 1 #define __SYSCALL_LL_E(x) \
2 ((union { long long ll; long l[2]; }){ .ll = x }).l[0], \ 2 ((union { \
3 ((union { long long ll; long l[2]; }){ .ll = x }).l[1] 3 long long ll; \
4 long l[2]; \
5 }){.ll = x}) \
6 .l[0], \
7 ((union { \
8 long long ll; \
9 long l[2]; \
10 }){.ll = x}) \
11 .l[1]
4 #define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x)) 12 #define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x))
5 13
6 #undef SYSCALL_NO_INLINE 14 #undef SYSCALL_NO_INLINE
7 #define SYSCALL_NO_INLINE 15 #define SYSCALL_NO_INLINE
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698