/[qemu]/qemu/target-sparc/op_helper.c
ViewVC logotype

Diff of /qemu/target-sparc/op_helper.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.17 by bellard, Sun Oct 30 21:23:39 2005 UTC revision 1.18 by bellard, Fri Nov 11 00:24:58 2005 UTC
# Line 276  void helper_ld_asi(int asi, int size, in Line 276  void helper_ld_asi(int asi, int size, in
276          case 4:          case 4:
277              ret = ldl_phys(T0 & ~3);              ret = ldl_phys(T0 & ~3);
278              break;              break;
279            case 8:
280                ret = ldl_phys(T0 & ~3);
281                T0 = ldl_phys((T0 + 4) & ~3);
282                break;
283          }          }
284          break;          break;
285      default:      default:
# Line 396  void helper_st_asi(int asi, int size, in Line 400  void helper_st_asi(int asi, int size, in
400              default:              default:
401                  stl_phys(T0 & ~3, T1);                  stl_phys(T0 & ~3, T1);
402                  break;                  break;
403                case 8:
404                    stl_phys(T0 & ~3, T1);
405                    stl_phys((T0 + 4) & ~3, T2);
406                    break;
407              }              }
408          }          }
409          return;          return;

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26