Skip to content

Commit

Permalink
MIPS: IP checksums: Remove unncessary .set pseudos
Browse files Browse the repository at this point in the history
They possibly silence meaningful warnings ...

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Oct 11, 2008
1 parent d86a812 commit 60724ca
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions arch/mips/lib/csum_partial.S
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,14 @@
#define UNIT(unit) ((unit)*NBYTES)

#define ADDC(sum,reg) \
.set push; \
.set noat; \
ADD sum, reg; \
sltu v1, sum, reg; \
ADD sum, v1; \
.set pop

#define ADDC32(sum,reg) \
.set push; \
.set noat; \
addu sum, reg; \
sltu v1, sum, reg; \
addu sum, v1; \
.set pop

#define CSUM_BIGCHUNK1(src, offset, sum, _t0, _t1, _t2, _t3) \
LOAD _t0, (offset + UNIT(0))(src); \
Expand Down Expand Up @@ -267,8 +261,6 @@ LEAF(csum_partial)
1: ADDC(sum, t1)

/* fold checksum */
.set push
.set noat
#ifdef USE_DOUBLE
dsll32 v1, sum, 0
daddu sum, v1
Expand All @@ -284,7 +276,6 @@ LEAF(csum_partial)
srl sum, sum, 8
or sum, v1
andi sum, 0xffff
.set pop
1:
.set reorder
/* Add the passed partial csum. */
Expand Down Expand Up @@ -664,8 +655,6 @@ EXC( sb t0, NBYTES-2(dst), .Ls_exc)
ADDC(sum, t2)
.Ldone:
/* fold checksum */
.set push
.set noat
#ifdef USE_DOUBLE
dsll32 v1, sum, 0
daddu sum, v1
Expand All @@ -681,7 +670,6 @@ EXC( sb t0, NBYTES-2(dst), .Ls_exc)
srl sum, sum, 8
or sum, v1
andi sum, 0xffff
.set pop
1:
.set reorder
ADDC32(sum, psum)
Expand Down

0 comments on commit 60724ca

Please sign in to comment.