summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Raghavan <arun.raghavan@collabora.co.uk>2011-05-10 13:33:28 +0530
committerColin Guthrie <colin@mageia.org>2011-05-11 10:30:38 +0100
commitbe4208d0799f21663f58f50430b4883e87709480 (patch)
tree35be9a84f6e90442a8b779400229cda74ca2a498
parente678beaf14fcba69bc679e3c8bcf406dff1f7242 (diff)
echo-cancel: Remove unnecessary noalign attribute
This was just introduced for debugging and should not have been in the final commit. Won't make a difference at the moment since this function is used as a pointer, but removing this in case we change this in the future.
-rw-r--r--src/modules/echo-cancel/adrian-aec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/modules/echo-cancel/adrian-aec.c b/src/modules/echo-cancel/adrian-aec.c
index dfe8ada9..e969e8c5 100644
--- a/src/modules/echo-cancel/adrian-aec.c
+++ b/src/modules/echo-cancel/adrian-aec.c
@@ -40,7 +40,6 @@ static REAL dotp(REAL a[], REAL b[])
return sum0 + sum1;
}
-static REAL dotp_sse(REAL a[], REAL b[]) __attribute__((noinline));
static REAL dotp_sse(REAL a[], REAL b[])
{
#ifdef __SSE__