diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-10-21 18:32:23 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2013-10-21 18:32:23 +0000 |
commit | 67b5215c7642f7436210b4501c445a42f5846fdd (patch) | |
tree | c428c7e73d5606ac395dd73b9723b83e18d58202 /gcc/system.h | |
parent | 0a873daac0eb17d86b867a1e7e679bd5385b7bc9 (diff) | |
download | gcc-67b5215c7642f7436210b4501c445a42f5846fdd.zip gcc-67b5215c7642f7436210b4501c445a42f5846fdd.tar.gz gcc-67b5215c7642f7436210b4501c445a42f5846fdd.tar.bz2 |
system.h: Move hwint.h include further down.
gcc/
* system.h: Move hwint.h include further down.
* hwint.h (sext_hwi, zext_hwi): Define unconditionally. Add
gcc_checking_asserts.
* hwint.c (sext_hwi, zext_hwi): Delete ENABLE_CHECKING versions.
From-SVN: r203906
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/system.h b/gcc/system.h index ce817d4..a1fc6de 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -273,9 +273,6 @@ extern int errno; # include <limits.h> #endif -/* Get definitions of HOST_WIDE_INT and HOST_WIDEST_INT. */ -#include "hwint.h" - /* A macro to determine whether a VALUE lies inclusively within a certain range without evaluating the VALUE more than once. This macro won't warn if the VALUE is unsigned and the LOWER bound is @@ -1063,4 +1060,7 @@ helper_const_non_const_cast (const char *p) #define DEBUG_VARIABLE #endif +/* Get definitions of HOST_WIDE_INT and HOST_WIDEST_INT. */ +#include "hwint.h" + #endif /* ! GCC_SYSTEM_H */ |