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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fusl/arch/powerpc/reloc.h ('k') | fusl/crt/arm/crti.s » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/arch/powerpc/syscall_arch.h
diff --git a/fusl/arch/powerpc/syscall_arch.h b/fusl/arch/powerpc/syscall_arch.h
deleted file mode 100644
index dba48a42a7999cbbda2df88d8dae5b38e4e5293b..0000000000000000000000000000000000000000
--- a/fusl/arch/powerpc/syscall_arch.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#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]
-#define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x))
-
-#undef SYSCALL_NO_INLINE
-#define SYSCALL_NO_INLINE
« 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