aboutsummaryrefslogtreecommitdiff
path: root/libtcc1.c
diff options
context:
space:
mode:
authorbellard <bellard>2003-04-13 14:35:27 +0000
committerbellard <bellard>2003-04-13 14:35:27 +0000
commitd6819c2c36a72f0145c39d6ac3ae3c25fcb222a5 (patch)
tree19b2ef695e5125a95c76154256357d251af24c47 /libtcc1.c
parent73acbe241320c6643e0222fce6eadec8a4833c1d (diff)
downloadtinycc-d6819c2c36a72f0145c39d6ac3ae3c25fcb222a5.tar.gz
tinycc-d6819c2c36a72f0145c39d6ac3ae3c25fcb222a5.tar.bz2
comment fixes (Peter Lund)
Diffstat (limited to 'libtcc1.c')
-rw-r--r--libtcc1.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libtcc1.c b/libtcc1.c
index 412629e..f244206 100644
--- a/libtcc1.c
+++ b/libtcc1.c
@@ -418,19 +418,19 @@ unsigned long long __umoddi3(unsigned long long u, unsigned long long v)
return w;
}
-/* XXX: suppress that and patch tcc to do it */
+/* XXX: fix tcc's code generator to do this instead */
long long __sardi3(long long a, int b)
{
return a >> b;
}
-/* XXX: suppress that and patch tcc to do it */
+/* XXX: fix tcc's code generator to do this instead */
unsigned long long __shrdi3(unsigned long long a, int b)
{
return a >> b;
}
-/* XXX: suppress that and patch tcc to do it */
+/* XXX: fix tcc's code generator to do this instead */
long long __shldi3(long long a, int b)
{
return a << b;
@@ -439,11 +439,11 @@ long long __shldi3(long long a, int b)
#if defined(__i386__)
/* FPU control word for rounding to nearest mode */
unsigned short __tcc_fpu_control = 0x137f;
-/* FPU control word for round to zero mode for int convertion */
+/* FPU control word for round to zero mode for int conversion */
unsigned short __tcc_int_fpu_control = 0x137f | 0x0c00;
#endif
-/* XXX: suppress that and patch tcc to do it */
+/* XXX: fix tcc's code generator to do this instead */
float __ulltof(unsigned long long a)
{
DWunion uu;