Wei Liu, on mer. 09 août 2017 13:15:48 +0100, wrote:
> Some code compiled by gcc 7 requires this.
> 
> Signed-off-by: Wei Liu <wei.l...@citrix.com>

Reviewed-by: Samuel Thibault <samuel.thiba...@ens-lyon.org>

> ---
>  lib/math.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/lib/math.c b/lib/math.c
> index 561393e..6ac8669 100644
> --- a/lib/math.c
> +++ b/lib/math.c
> @@ -6,6 +6,7 @@
>   *        File: math.c
>   *      Author: Rolf Neugebauer (neuge...@dcs.gla.ac.uk)
>   *     Changes: 
> + *        Implement __udivmoddi4 (Wei Liu <wei.l...@citrix.com>)
>   *              
>   *        Date: Aug 2003
>   * 
> @@ -396,6 +397,15 @@ __umoddi3(u_quad_t a, u_quad_t b)
>       return (r);
>  }
>  
> +/*
> + * Returns the quotient and place remainder in r
> + */
> +u_quad_t
> +__udivmoddi4(u_quad_t a, u_quad_t b, u_quad_t *r)
> +{
> +     return __qdivrem(a, b, r);
> +}
> +
>  /*
>   * From
>   * moddi3.c
> -- 
> 2.11.0
> 

-- 
Samuel
>       dvips -o $@ $<     
Faut faire gffe de pas te couper avec ton truc, t'as mis des ciseaux ($<)
partout :))
-+- Dom in Guide du linuxien pervers - "J'aime pas les Makefile !" -+-

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

Reply via email to