changeset 588:99c839b47e5d

Correct a comment with the proper assembly statement.
author Rob Landley <rob@landley.net>
date Sun, 06 Apr 2008 15:11:54 -0500
parents e790c9263068
children 49d3fc246344
files tcc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tcc.c	Fri Apr 04 00:18:36 2008 -0500
+++ b/tcc.c	Sun Apr 06 15:11:54 2008 -0500
@@ -4137,7 +4137,7 @@
 #ifdef TINYCC_TARGET_I386
     /* for x86, we need to pop the FP stack */
     if (v == TREG_ST0) {
-        gen_multibyte(0xd8dd); /* fstp %st(1) */
+        gen_multibyte(0xd8dd); /* fstp %st(0) */
     } else
 #endif
     if (v == VT_JMP || v == VT_JMPI) {