]> git.proxmox.com Git - mirror_qemu.git/blobdiff - target-i386/ops_sse.h
find -type f | xargs sed -i 's/[\t ]*$//g' # Yes, again. Note the star in the regex.
[mirror_qemu.git] / target-i386 / ops_sse.h
index b6ca9a3d7796f07bc07ad71e624aa50d80b3d507..82d1ec0a1e770da47cb0b6c868d1cf775c93f847 100644 (file)
@@ -1213,7 +1213,7 @@ void OPPROTO glue(op_pinsrw, SUFFIX) (void)
 {
     Reg *d = (Reg *)((char *)env + PARAM1);
     int pos = PARAM2;
-   
+
     d->W(pos) = T0;
 }
 
@@ -1221,7 +1221,7 @@ void OPPROTO glue(op_pextrw, SUFFIX) (void)
 {
     Reg *s = (Reg *)((char *)env + PARAM1);
     int pos = PARAM2;
-   
+
     T0 = s->W(pos);
 }