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/genrecog.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/genrecog.c')
-rw-r--r-- | gcc/genrecog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/genrecog.c b/gcc/genrecog.c index 30fee047e4a..5492fa0807e 100644 --- a/gcc/genrecog.c +++ b/gcc/genrecog.c @@ -1944,7 +1944,7 @@ write_switch (start, depth) case DT_elt_one_int: case DT_elt_zero_wide: case DT_elt_zero_wide_safe: - printf (HOST_WIDE_INT_PRINT_DEC, p->tests->u.intval); + printf (HOST_WIDE_INT_PRINT_DEC_C, p->tests->u.intval); break; default: abort (); @@ -2003,7 +2003,7 @@ write_cond (p, depth, subroutine_type) case DT_elt_zero_wide: case DT_elt_zero_wide_safe: printf ("XWINT (x%d, 0) == ", depth); - printf (HOST_WIDE_INT_PRINT_DEC, p->u.intval); + printf (HOST_WIDE_INT_PRINT_DEC_C, p->u.intval); break; case DT_veclen_ge: |