Update decn.c

A call to mult_decn is not needed and prevents PI from being loaded into the X register.
This commit is contained in:
toml12953 2022-04-21 05:35:02 -04:00 committed by GitHub
parent 25db3835e0
commit 9e30548cb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1591,7 +1591,7 @@ void to_radian_decn(void) {
void pi_decn(void) { void pi_decn(void) {
set_dec80_zero(&BDecn); set_dec80_zero(&BDecn);
copy_decn(&AccDecn, &DECN_PI); copy_decn(&AccDecn, &DECN_PI);
mult_decn(); // mult_decn();
} }
static void set_str_error(void){ static void set_str_error(void){