diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:35:15 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:35:15 -0400 |
commit | fba0a90c7d18a2350d3a5f5da1d9b47c7763d557 (patch) | |
tree | 5f022d17e0850083df603660d854803185366be6 /reduce.c | |
parent | 8d2224f1227e8da595ff4db29d805908a91609bf (diff) |
rename bignegate() to big_negate()
Diffstat (limited to 'reduce.c')
-rw-r--r-- | reduce.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1856,7 +1856,7 @@ L3: if(arg1==NIL)lexfail(lastarg); case READY(NEG): /* NEG x => -x, if x is a number */ UPLEFT; - if(tag[lastarg]==INT)simpl(bignegate(lastarg)); + if(tag[lastarg]==INT)simpl(big_negate(lastarg)); else setdbl(e,-get_dbl(lastarg)); goto DONE; |