Remove some unrequired SIMULATOR checks - the CPU_* family of defines are never defined for the sim.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14711 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2007-09-15 16:49:28 +00:00
parent e4f8b95d53
commit 219b1f58a6
3 changed files with 6 additions and 6 deletions

View file

@ -2,8 +2,8 @@ bitstream.c
decoder.c
shndec.c
tables.c
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
#if defined(CPU_COLDFIRE)
coldfire.S
#elif defined(CPU_ARM) && !defined(SIMULATOR)
#elif defined(CPU_ARM)
arm.S
#endif

View file

@ -9,10 +9,10 @@ stream.c
synth.c
timer.c
version.c
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
#if defined(CPU_COLDFIRE)
imdct_mcf5249.S
#endif
#if defined(CPU_ARM) && !defined(SIMULATOR)
#if defined(CPU_ARM)
imdct_l_arm.S
dct32_arm.S
synth_full_arm.S

View file

@ -5,10 +5,10 @@ unpack.c
pack.c
words.c
wputils.c
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
#if defined(CPU_COLDFIRE)
coldfire.S
#endif
#if defined(CPU_ARM) && !defined(SIMULATOR)
#if defined(CPU_ARM)
arm.S
arml.S
#endif