Skip to content

Commit 4895fd5

Browse files
committed
oops
1 parent cb2ae71 commit 4895fd5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

jsrc/j.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2260,8 +2260,8 @@ extern I CTLZI_(UI,UI4*);
22602260
#define BLSR(x) ((x)&~BLSI(x))
22612261
#endif
22622262

2263-
static inline UI4 rol32(UI4 x,I s){ R (x<<s)|(x>>(32-x)); }
2264-
static inline UI4 ror32(UI4 x,I s){ R (x>>s)|(x<<(32-x)); }
2263+
static inline UI4 rol32(UI4 x,I s){ R (x<<s)|(x>>(32-s)); }
2264+
static inline UI4 ror32(UI4 x,I s){ R (x>>s)|(x<<(32-s)); }
22652265

22662266
// Set these switches for testing
22672267
#define AUDITBP 0 // Verify that bp() returns expected data

0 commit comments

Comments
 (0)