Parent Directory
|
Revision Log
|
Patch
| revision 1.1 by bellard, Tue Sep 30 20:33:28 2003 UTC | revision 1.2 by bellard, Thu Oct 30 01:05:49 2003 UTC | |
|---|---|---|
| # | Line 83 void OPPROTO glue(glue(op_cmovw,REGNAME) | Line 83 void OPPROTO glue(glue(op_cmovw,REGNAME) |
| 83 | { | { |
| 84 | if (T0) | if (T0) |
| 85 | REG = (REG & 0xffff0000) | (T1 & 0xffff); | REG = (REG & 0xffff0000) | (T1 & 0xffff); |
| 86 | FORCE_RET(); | |
| 87 | } | } |
| 88 | ||
| 89 | void OPPROTO glue(glue(op_cmovl,REGNAME),_T1_T0)(void) | void OPPROTO glue(glue(op_cmovl,REGNAME),_T1_T0)(void) |
| 90 | { | { |
| 91 | if (T0) | if (T0) |
| 92 | REG = T1; | REG = T1; |
| 93 | FORCE_RET(); | |
| 94 | } | } |
| 95 | ||
| 96 | /* NOTE: T0 high order bits are ignored */ | /* NOTE: T0 high order bits are ignored */ |
|
||||||||
| savannah-hackers-public@gnu.org | ViewVC Help |
| Powered by ViewVC 1.1.26 |