From 1daf9b11ba6f47fceaf8cd55078d26baa3352590 Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Mon, 5 Jul 2010 16:42:11 +0300 Subject: check for !x86 platforms, otherwise the BTL benchmark doesn't compile on arm/powerpc --- bench/btl/generic_bench/btl.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bench/btl') diff --git a/bench/btl/generic_bench/btl.hh b/bench/btl/generic_bench/btl.hh index b5838ba94..17cd397a1 100644 --- a/bench/btl/generic_bench/btl.hh +++ b/bench/btl/generic_bench/btl.hh @@ -44,7 +44,7 @@ #define BTL_ASM_COMMENT(X) #endif -#if (defined __GNUC__) && (!defined __INTEL_COMPILER) +#if (defined __GNUC__) && (!defined __INTEL_COMPILER) && !defined(__arm__) && !defined(__powerpc__) #define BTL_DISABLE_SSE_EXCEPTIONS() { \ int aux; \ asm( \ -- cgit v1.2.3