From 931977d9191b542c356d2dfa3258c8d09a6b8498 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Tue, 16 Dec 2014 20:59:56 +0100 Subject: hwint.c (abs_hwi, absu_hwi): Move to ... * hwint.c (abs_hwi, absu_hwi): Move to ... * hwint.h (abs_hwi, absu_hwi): ... here; make inline. From-SVN: r218791 --- gcc/hwint.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'gcc/hwint.c') diff --git a/gcc/hwint.c b/gcc/hwint.c index 9d0569b7583..405118e124a 100644 --- a/gcc/hwint.c +++ b/gcc/hwint.c @@ -124,22 +124,6 @@ popcount_hwi (unsigned HOST_WIDE_INT x) #endif /* GCC_VERSION < 3004 */ -/* Compute the absolute value of X. */ - -HOST_WIDE_INT -abs_hwi (HOST_WIDE_INT x) -{ - gcc_checking_assert (x != HOST_WIDE_INT_MIN); - return x >= 0 ? x : -x; -} - -/* Compute the absolute value of X as an unsigned type. */ - -unsigned HOST_WIDE_INT -absu_hwi (HOST_WIDE_INT x) -{ - return x >= 0 ? (unsigned HOST_WIDE_INT)x : -(unsigned HOST_WIDE_INT)x; -} /* Compute the greatest common divisor of two numbers A and B using Euclid's algorithm. */ -- cgit v1.2.3