]> git.ipfire.org Git - thirdparty/qemu.git/blobdiff - target-sparc/op.c
find -type f | xargs sed -i 's/[\t ]*$//g' # Yes, again. Note the star in the regex.
[thirdparty/qemu.git] / target-sparc / op.c
index 834173097d318a1df0cff7dd5771119787527f79..683de5ada535ed2acd689e38039c13048686ea6e 100644 (file)
@@ -1285,7 +1285,7 @@ void OPPROTO op_eval_be(void)
 void OPPROTO op_eval_ble(void)
 {
     target_ulong Z = FLAG_SET(PSR_ZERO), N = FLAG_SET(PSR_NEG), V = FLAG_SET(PSR_OVF);
-   
+
     T2 = Z | (N ^ V);
 }
 
@@ -1373,7 +1373,7 @@ void OPPROTO op_eval_xbe(void)
 void OPPROTO op_eval_xble(void)
 {
     target_ulong Z = XFLAG_SET(PSR_ZERO), N = XFLAG_SET(PSR_NEG), V = XFLAG_SET(PSR_OVF);
-   
+
     T2 = Z | (N ^ V);
 }