From 18bbf6d3cfb15219c87ebc79a5dd58bf75f2b4c4 Mon Sep 17 00:00:00 2001 From: xleroy Date: Wed, 3 Jul 2013 11:32:06 +0000 Subject: Follow-up to commit 2288: add test for special case of long division. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2289 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/regression/int64.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/regression/int64.c') diff --git a/test/regression/int64.c b/test/regression/int64.c index c0b6e569..5b32ccd9 100644 --- a/test/regression/int64.c +++ b/test/regression/int64.c @@ -85,7 +85,8 @@ u64 special_values[] = { 0x7FFFFFFFLLU, 0x80000000LLU, 0x7FFFFFFFFFFFFFFFLLU, - 0x8000000000000000LLU + 0x8000000000000000LLU, + 0x100000003LLU }; #define NUM_SPECIAL_VALUES (sizeof(special_values) / sizeof(u64)) -- cgit