Home | History | Annotate | Download | only in config

Lines Matching defs:bignum

430   /* If exp.op == O_big then this bignum holds a copy of the global bignum value.  */
431 LITTLENUM_TYPE * bignum;
1657 pool->literals[entry].bignum = XNEWVEC (LITTLENUM_TYPE,
1659 memcpy (pool->literals[entry].bignum, generic_bignum,
1663 pool->literals[entry].bignum = NULL;
1762 /* PR 16688: Restore the global bignum value. */
1763 gas_assert (pool->literals[entry].bignum != NULL);
1764 memcpy (generic_bignum, pool->literals[entry].bignum,
1773 free (pool->literals[entry].bignum);
1774 pool->literals[entry].bignum = NULL;