From 728741e35ef93d7512a5934351c44bfaee7c1144 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Mon, 5 Aug 2019 13:02:29 +0200 Subject: Remove register qualifier. Let the compiler sort out register allocation. --- md5c.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'md5c.c') diff --git a/md5c.c b/md5c.c index 11a61516..98b4ef2c 100644 --- a/md5c.c +++ b/md5c.c @@ -59,7 +59,7 @@ void MD5Init(struct MD5Context *ctx) void MD5Update(struct MD5Context *ctx, const void *buf_, unsigned len) { const unsigned char *buf = (const unsigned char *)buf_; - register uint32_t t; + uint32_t t; /* Update bitcount */ @@ -165,7 +165,7 @@ void MD5Final(void *digest, struct MD5Context *ctx) */ void MD5Transform(uint32_t buf[4], uint32_t const in[16]) { - register uint32_t a, b, c, d; + uint32_t a, b, c, d; a = buf[0]; b = buf[1]; -- cgit v1.2.3