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

Side by Side Diff: fusl/arch/powerpc/syscall_arch.h

Issue 1724903002: [fusl] Remove code for unsupported architectures (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
« no previous file with comments | « fusl/arch/powerpc/reloc.h ('k') | fusl/crt/arm/crti.s » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #define __SYSCALL_LL_E(x) \
2 ((union { \
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]
12 #define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x))
13
14 #undef SYSCALL_NO_INLINE
15 #define SYSCALL_NO_INLINE
OLDNEW
« no previous file with comments | « fusl/arch/powerpc/reloc.h ('k') | fusl/crt/arm/crti.s » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698