svp compiler: some adjustments

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@370 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2008-03-05 21:52:45 +00:00
parent 757f8dae1a
commit a6fb500bb2
5 changed files with 47 additions and 22 deletions

View file

@ -127,7 +127,6 @@ static void emit_mov_const(int cond, int d, unsigned int val)
{
int need_or = 0;
if (val & 0xff000000) {
EOP_MOV_IMM(d, 8/2, (val>>24)&0xff);
EOP_C_DOP_IMM(cond, A_OP_MOV, 0, 0, d, 8/2, (val>>24)&0xff);
need_or = 1;
}