From ce8fe402f545e8762abd3745e0d3aa41d2a97a8f Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 13 Aug 2017 12:33:02 +0100 Subject: Revert "app-emulation/wine : version bump" This reverts commit 5a8f7ce4218cf59d117cc1d2c1f52165b9e68bd7. --- app-emulation/wine-any/files/pr69140.c | 37 ---------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 app-emulation/wine-any/files/pr69140.c (limited to 'app-emulation/wine-any/files/pr69140.c') diff --git a/app-emulation/wine-any/files/pr69140.c b/app-emulation/wine-any/files/pr69140.c deleted file mode 100644 index 7c9e001f..00000000 --- a/app-emulation/wine-any/files/pr69140.c +++ /dev/null @@ -1,37 +0,0 @@ -/* { dg-do compile { target lp64 } } */ -/* { dg-options "-O2 -mincoming-stack-boundary=3" } */ - -typedef struct { - unsigned int buf[4]; - unsigned char in[64]; -} MD4_CTX; - -static void -MD4Transform (unsigned int buf[4], const unsigned int in[16]) -{ - unsigned int a, b, c, d; - (b) += ((((c)) & ((d))) | ((~(c)) & ((a)))) + (in[7]); - (a) += ((((b)) & ((c))) | ((~(b)) & ((d)))) + (in[8]); - (d) += ((((a)) & ((b))) | ((~(a)) & ((c)))) + (in[9]); - buf[3] += d; -} - -void __attribute__((ms_abi)) -MD4Update (MD4_CTX *ctx, const unsigned char *buf) -{ - MD4Transform( ctx->buf, (unsigned int *)ctx->in); - MD4Transform( ctx->buf, (unsigned int *)ctx->in); -} - -int -main(void) -{ - MD4_CTX ctx_test = - { - { 0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476 }, - { 0, 0 } - }; - unsigned char buf[64]; - - MD4Update(&ctx_test, (const unsigned char *) &buf); -} -- cgit v1.2.3