summaryrefslogtreecommitdiff
path: root/apps/codecs/lib/codeclib_misc.h
diff options
context:
space:
mode:
authorDave Hooper <dave@beermex.com>2009-08-29 12:20:04 +0000
committerDave Hooper <dave@beermex.com>2009-08-29 12:20:04 +0000
commit260ed991392a387ff9ae5bbd8dba7afd10c1faef (patch)
treec0468e65d15081ec183921915ff10afc68aeb8bd /apps/codecs/lib/codeclib_misc.h
parente9dcb0f1457f83b33bd9778e9df4caff44ead6c1 (diff)
downloadrockbox-260ed991392a387ff9ae5bbd8dba7afd10c1faef.zip
rockbox-260ed991392a387ff9ae5bbd8dba7afd10c1faef.tar.gz
rockbox-260ed991392a387ff9ae5bbd8dba7afd10c1faef.tar.bz2
rockbox-260ed991392a387ff9ae5bbd8dba7afd10c1faef.tar.xz
Removed remaining MB usage
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22527 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib/codeclib_misc.h')
-rw-r--r--apps/codecs/lib/codeclib_misc.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/codecs/lib/codeclib_misc.h b/apps/codecs/lib/codeclib_misc.h
index f522d33..54bebb7 100644
--- a/apps/codecs/lib/codeclib_misc.h
+++ b/apps/codecs/lib/codeclib_misc.h
@@ -105,13 +105,6 @@ static inline int32_t MULT31_SHIFT15(int32_t x, int32_t y) {
#endif
/*
- * This should be used as a memory barrier, forcing all cached values in
- * registers to wr writen back to memory. Might or might not be beneficial
- * depending on the architecture and compiler.
- */
-#define MB()
-
-/*
* The XPROD functions are meant to optimize the cross products found all
* over the place in mdct.c by forcing memory operation ordering to avoid
* unnecessary register reloads as soon as memory is being written to.