diff options
| author | John van Groningen | 2015-09-18 09:17:49 +0000 |
|---|---|---|
| committer | John van Groningen | 2015-09-18 09:17:49 +0000 |
| commit | 5b021deeefd372e1c08117cef75897f24e4d1691 (patch) | |
| tree | 60a305de6f0a7adcfc4d7735e61c2169ac2c9d45 | |
| parent | remove 0r before floating point constants on 64 bit Mac OS X, (diff) | |
fix typo
| -rw-r--r-- | cgawas.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2759,7 +2759,7 @@ static void w_as_word_instruction (struct instruction *instruction) fprintf (assembly_file,"%.20e",*float_constant->float_constant_r_p); # else fprintf (assembly_file,intel_asm ? "%.20e" : "0r%.20e",*float_constant->float_constant_r_p); -#endif +# endif w_as_newline(); } } @@ -2778,7 +2778,7 @@ static void w_as_word_instruction (struct instruction *instruction) fprintf (assembly_file,"%.20e",*r_p); # else fprintf (assembly_file,intel_asm ? "%.20e" : "0r%.20e",*r_p); -# emdif +# endif w_as_newline(); w_as_to_code_section(); |
