mn10300: add cc clobbers to asm statements
[pandora-kernel.git] / arch / mn10300 / lib / checksum.c
index 274f29e..b6580f5 100644 (file)
@@ -22,6 +22,7 @@ static inline unsigned short from32to16(__wsum sum)
            "   addc    0xffff,%0       \n"
            : "=r" (sum)
            : "r" (sum << 16), "0" (sum & 0xffff0000)
+           : "cc"
            );
        return sum >> 16;
 }