From 0249250f5f5ba2f781643a15fa4056bf1bd8b30d Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Mon, 30 Nov 2015 11:57:04 +0100 Subject: [PATCH] drop unused fastcall annotation Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich --- xen/crypto/vmac.c | 3 --- xen/include/xen/config.h | 1 - 2 files changed, 4 deletions(-) diff --git a/xen/crypto/vmac.c b/xen/crypto/vmac.c index 8f2f3727b1..f3f2743801 100644 --- a/xen/crypto/vmac.c +++ b/xen/crypto/vmac.c @@ -173,15 +173,12 @@ const uint64_t mpoly = UINT64_C(0x1fffffff1fffffff); /* Poly key mask */ #if __GNUC__ #define ALIGN(n) __attribute__ ((aligned(n))) #define NOINLINE __attribute__ ((noinline)) -#define FASTCALL #elif _MSC_VER #define ALIGN(n) __declspec(align(n)) #define NOINLINE __declspec(noinline) -#define FASTCALL __fastcall #else #define ALIGN(n) #define NOINLINE -#define FASTCALL #endif /* ----------------------------------------------------------------------- */ diff --git a/xen/include/xen/config.h b/xen/include/xen/config.h index f7258c7ff7..450be86f78 100644 --- a/xen/include/xen/config.h +++ b/xen/include/xen/config.h @@ -84,7 +84,6 @@ #define mk_unsigned_long(x) x #endif /* !__ASSEMBLY__ */ -#define fastcall #define __cpuinitdata #define __cpuinit -- 2.30.2