[cogl/cogl-1.16] Fix the check for whether to use inline ARM assembler
- From: Neil Roberts <nroberts src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cogl/cogl-1.16] Fix the check for whether to use inline ARM assembler
- Date: Thu, 4 Jul 2013 10:40:44 +0000 (UTC)
commit 823f254190abebdc2268e6e005b1f94c65a49ea2
Author: Neil Roberts <neil linux intel com>
Date: Wed Jul 3 17:13:23 2013 +0100
Fix the check for whether to use inline ARM assembler
Commit 839cf49763cfe28 changed the inline ARM assembler so that it
won't be used when targetting the Thumb instruction set. I manually
applied the patch but I messed up the #if so it was generating a
warning.
Reviewed-by: Robert Bragg <robert linux intel com>
cogl/cogl-fixed.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/cogl/cogl-fixed.c b/cogl/cogl-fixed.c
index 5dc74f8..a144d84 100644
--- a/cogl/cogl-fixed.c
+++ b/cogl/cogl-fixed.c
@@ -807,7 +807,7 @@ CoglFixed
cogl_fixed_mul (CoglFixed a,
CoglFixed b)
{
-#ifdef __arm__ && !defined(__thumb__)
+#if defined(__arm__) && !defined(__thumb__)
/* This provides about 12% speedeup on the gcc -O2 optimised
* C version
*
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]