]> git.proxmox.com Git - qemu.git/blobdiff - target-sparc/cpu.h
Wrap long lines
[qemu.git] / target-sparc / cpu.h
index fbd9c2a7e62c4484352156bf90da88907e3b1298..af0ebd177b2e85374312921f93dcf8b945146d2c 100644 (file)
@@ -347,7 +347,7 @@ void cpu_set_cwp(CPUSPARCState *env1, int new_cwp);
 #ifdef TARGET_SPARC64
 #define GET_CCR(env) (((env->xcc >> 20) << 4) | ((env->psr & PSR_ICC) >> 20))
 #define PUT_CCR(env, val) do { int _tmp = val;                          \
-        env->xcc = (_tmp >> 4) << 20;                                           \
+        env->xcc = (_tmp >> 4) << 20;                                   \
         env->psr = (_tmp & 0xf) << 20;                                  \
     } while (0)
 #define GET_CWP64(env) (NWINDOWS - 1 - (env)->cwp)