diff options
| author | John van Groningen | 2006-12-14 12:32:39 +0000 |
|---|---|---|
| committer | John van Groningen | 2006-12-14 12:32:39 +0000 |
| commit | d58eaceeeafc674df2aed8b9460c196e9cfd73a4 (patch) | |
| tree | eff1da6404f36e2a00eafd1b10da757b6b95e568 | |
| parent | fix bug in code generation for 64 bit version, if a real is loaded from a node (diff) | |
store 64 bits in data section (instead of 32) for cvtsi2sdq instruction
| -rw-r--r-- | cgaas.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3903,7 +3903,7 @@ static void as_fmovel_instruction (struct instruction *instruction) new_label->label_flags=DATA_LABEL; define_data_label (new_label); - store_long_word_in_data_section (instruction->instruction_parameters[0].parameter_data.i); + store_word64_in_data_section (instruction->instruction_parameters[0].parameter_data.imm); as_f_a_rexaw (0xf2,0x2a,new_label,d_freg); break; |
