Fix silly typos in the previous change.

tcc-xref
Shinichiro Hamaji 2009-04-14 01:30:39 +09:00 committed by grischka
parent 9fe28b610e
commit 2e9b57b6d0
1 changed files with 2 additions and 2 deletions

4
tcc.c
View File

@ -5185,7 +5185,7 @@ int rc_fret(int t)
{
#ifdef TCC_TARGET_X86_64
if (t == VT_LDOUBLE) {
return TREG_ST0;
return RC_ST0;
}
#endif
return RC_FRET;
@ -5200,7 +5200,7 @@ int reg_fret(int t)
}
#endif
return REG_FRET;
}
}
/* expand long long on stack in two int registers */
void lexpand(void)