1
0
Fork 0
forked from len0rd/rockbox

Correct a Coldfire asm constraint.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9869 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Magnus Holmgren 2006-05-03 17:45:09 +00:00
parent 6a267a8be7
commit 7f1d214801

View file

@ -187,7 +187,7 @@ INLINE unsigned range_limit(int value)
"spl.b %[v] \n" /* yes: set low byte to appropriate boundary */
"1: \n"
: /* outputs */
[v]"+r"(value)
[v]"+d"(value)
);
return value;
#elif defined(CPU_ARM)