Bug 33536 - extraneous escapes
Summary: extraneous escapes
Status: RESOLVED WONTFIX
Alias: None
Product: gcc
Classification: Unclassified
Component: target (show other bugs)
Version: 4.3.0
: P3 enhancement
Target Milestone: ---
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-09-23 10:21 UTC by Kai Henningsen
Modified: 2020-01-18 03:09 UTC (History)
1 user (show)

See Also:
Host:
Target: spu
Build:
Known to work:
Known to fail:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Kai Henningsen 2007-09-23 10:21:05 UTC
gcc/config/spu/spu.md:1647f:

  {
    emit_move_insn (operands[3],spu_float_const(\"0.5\",SFmode));     <----
    emit_move_insn (operands[4],spu_float_const(\"1.00000011920928955078125\",SFmode));  <----
    emit_insn(gen_frsqest_sf(operands[2],operands[1]));
    emit_insn(gen_fi_sf(operands[2],operands[1],operands[2]));
    emit_insn(gen_mulsf3(operands[5],operands[2],operands[1]));
    emit_insn(gen_mulsf3(operands[3],operands[5],operands[3]));
    emit_insn(gen_fnms_sf(operands[4],operands[2],operands[5],operands[4]));
    emit_insn(gen_fma_sf(operands[0],operands[4],operands[3],operands[5]));
    DONE;
  })

This is in a brace block, NOT in a double quote string. These escapes are
bogus.

This is revision 127595.
Comment 1 Andrew Pinski 2007-09-23 16:43:28 UTC
Again this is only an extraneous escape.
Comment 2 Andrew Pinski 2020-01-18 03:09:39 UTC
spu target has been removed so closing as won't fix.