Home | History | Annotate | Download | only in config

Lines Matching refs:bignum

592   /* If exp.op == O_big then this bignum holds a copy of the global bignum value.  */
593 LITTLENUM_TYPE * bignum;
2074 pool->literals[entry].bignum = XNEWVEC (LITTLENUM_TYPE,
2076 memcpy (pool->literals[entry].bignum, generic_bignum,
2080 pool->literals[entry].bignum = NULL;
2179 /* PR 16688: Restore the global bignum value. */
2180 gas_assert (pool->literals[entry].bignum != NULL);
2181 memcpy (generic_bignum, pool->literals[entry].bignum,
2190 free (pool->literals[entry].bignum);
2191 pool->literals[entry].bignum = NULL;