# HG changeset patch # User Rob Landley # Date 1207512714 18000 # Node ID 99c839b47e5d26b2c6d6a5deddf47bcdc9af5c78 # Parent e790c926306880bb703cc2ac2bc7e5fb93d222a5 Correct a comment with the proper assembly statement. diff -r e790c9263068 -r 99c839b47e5d tcc.c --- 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) {