From 9ac6e3d2e30be0c3f38e14551baa26db614d4f3f Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 22 Jun 2015 16:53:06 +0200 Subject: tests: fix cpp directives --- tests/check/libs/libsabi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/check/libs/libsabi.c b/tests/check/libs/libsabi.c index 76a384eec..508406ad5 100644 --- a/tests/check/libs/libsabi.c +++ b/tests/check/libs/libsabi.c @@ -82,16 +82,16 @@ # include "struct_i386.h" # define HAVE_ABI_SIZES TRUE # endif -#elif HAVE_CPU_X86_64 +#elif defined HAVE_CPU_X86_64 # include "struct_x86_64.h" # define HAVE_ABI_SIZES TRUE -#elif HAVE_CPU_ARM +#elif defined HAVE_CPU_ARM # include "struct_arm.h" # define HAVE_ABI_SIZES FALSE -#elif HAVE_CPU_PPC +#elif defined HAVE_CPU_PPC # include "struct_ppc32.h" # define HAVE_ABI_SIZES TRUE -#elif HAVE_CPU_PPC64 +#elif defined HAVE_CPU_PPC64 # include "struct_ppc64.h" # define HAVE_ABI_SIZES TRUE #else /* in case someone wants to generate a new arch */ -- cgit v1.2.3