From 6d205fda030a21d99ea5064b9501d58a11b6efa5 Mon Sep 17 00:00:00 2001 From: Brad Midgley Date: Mon, 28 Jan 2008 18:00:51 +0000 Subject: revert arm conditional code --- sbc/sbc_math.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'sbc/sbc_math.h') diff --git a/sbc/sbc_math.h b/sbc/sbc_math.h index 68b0f197..8c5ec3a7 100644 --- a/sbc/sbc_math.h +++ b/sbc/sbc_math.h @@ -66,12 +66,4 @@ typedef long long sbc_extended_t; #define SUB(dst, src) { dst -= src; } #define MUL(dst, a, b) { dst = (sbc_extended_t) (a) * (b); } #define DIV2(dst, src) { dst = ASR(src, 1); } - -#ifdef __arm__ -#define MULA(res, a, b) __asm__( \ - "smlal %Q0, %R0, %2, %3" \ - : "=&r" (res) \ - : "0" (res), "r" (a), "r" (b)); -#else #define MULA(dst, a, b) { dst += (sbc_extended_t) (a) * (b); } -#endif -- cgit