forked from len0rd/rockbox
Code cleaning - remove some unnecessary defined(SIMULATOR) checks
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13369 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1fc2d91a83
commit
f02cba8096
30 changed files with 59 additions and 63 deletions
|
@ -60,7 +60,7 @@ enum {
|
|||
};
|
||||
|
||||
/* A bunch of fixed point assembler helper macros */
|
||||
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
|
||||
#if defined(CPU_COLDFIRE)
|
||||
/* These macros use the Coldfire EMAC extension and need the MACSR flags set
|
||||
* to fractional mode with no rounding.
|
||||
*/
|
||||
|
@ -133,7 +133,7 @@ enum {
|
|||
|
||||
#define ACC_INIT(acc, x, y) ACC(acc, x, y)
|
||||
|
||||
#elif defined(CPU_ARM) && !defined(SIMULATOR)
|
||||
#elif defined(CPU_ARM)
|
||||
|
||||
/* Multiply two S.31 fractional integers and return the sign bit and the
|
||||
* 31 most significant bits of the result.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue