diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-22 14:20:20 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-22 14:20:20 +0000 |
commit | fe0e3c2a0efe63130f3e54e31d6fdbf51cb75b9d (patch) | |
tree | 9d32c3466f95348f1df5f8b7e1d421e33826335c /gcc/genemit.c | |
parent | 7016e1d108cf000fe623b15ff4eeb086f326d949 (diff) | |
download | gcc-fe0e3c2a0efe63130f3e54e31d6fdbf51cb75b9d.tar.gz |
* hwint.c (define HOST_WIDE_INT_PRINT_DEC_C): New define.
* genrecog.c (write_switch, write_cond): Use it.
* genemit.c (gen_exp): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55647 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genemit.c')
-rw-r--r-- | gcc/genemit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genemit.c b/gcc/genemit.c index 93425ad3569..781eba2beb0 100644 --- a/gcc/genemit.c +++ b/gcc/genemit.c @@ -246,7 +246,7 @@ gen_exp (x, subroutine_type, used) else { printf ("GEN_INT ("); - printf (HOST_WIDE_INT_PRINT_DEC, INTVAL (x)); + printf (HOST_WIDE_INT_PRINT_DEC_C, INTVAL (x)); printf (")"); } return; |