diff options
Diffstat (limited to 'gcc/rtlhash.c')
-rw-r--r-- | gcc/rtlhash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/rtlhash.c b/gcc/rtlhash.c index 680812e..a7cfc53 100644 --- a/gcc/rtlhash.c +++ b/gcc/rtlhash.c @@ -77,11 +77,11 @@ add_rtx (const_rtx x, hash &hstate) switch (fmt[i]) { case 'w': - hstate.add_object (XWINT (x, i)); + hstate.add_hwi (XWINT (x, i)); break; case 'n': case 'i': - hstate.add_object (XINT (x, i)); + hstate.add_int (XINT (x, i)); break; case 'V': case 'E': |