public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/63408] GCC emits incorrect FMA instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
@ 2014-09-29 18:21 ` pinskia at gcc dot gnu.org
  2014-09-29 19:22 ` itay at phobotic dot com
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu.org @ 2014-09-29 18:21 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Are you sure 1120403456 does not encode -100.0 ?


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] GCC emits incorrect FMA instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
  2014-09-29 18:21 ` [Bug target/63408] GCC emits incorrect FMA instruction on Cortex-M4 target pinskia at gcc dot gnu.org
@ 2014-09-29 19:22 ` itay at phobotic dot com
  2014-09-30 10:21 ` [Bug target/63408] [4.8 regression] " rearnsha at gcc dot gnu.org
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: itay at phobotic dot com @ 2014-09-29 19:22 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #2 from Itay Perl <itay at phobotic dot com> ---
Yes, I am certain.

1. Replacing the minus sign with a plus sign results in the same code
(including the constant)

2.  

    >>> struct.unpack('I', struct.pack('f', 100))[0]
    1120403456


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.8 regression] GCC emits incorrect FMA instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
  2014-09-29 18:21 ` [Bug target/63408] GCC emits incorrect FMA instruction on Cortex-M4 target pinskia at gcc dot gnu.org
  2014-09-29 19:22 ` itay at phobotic dot com
@ 2014-09-30 10:21 ` rearnsha at gcc dot gnu.org
  2014-11-19 13:28 ` [Bug target/63408] [4.8 regression] GCC emits incorrect fixed->fp conversion " rguenth at gcc dot gnu.org
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: rearnsha at gcc dot gnu.org @ 2014-09-30 10:21 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

Richard Earnshaw <rearnsha at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-09-30
                 CC|                            |ramana at gcc dot gnu.org
            Summary|GCC emits incorrect FMA     |[4.8 regression] GCC emits
                   |instruction on Cortex-M4    |incorrect FMA instruction
                   |target                      |on Cortex-M4 target
     Ever confirmed|0                           |1

--- Comment #3 from Richard Earnshaw <rearnsha at gcc dot gnu.org> ---
Confirmed.  The compiler thinks (incorrectly) that the conversion of b to float
can be merged with the negation by using the fixed-to-float conversion
operation in the back-end.  That is, it thinks

(insn 10 9 11 2 (set (reg:SF 121 [ D.4093 ])
        (mult:SF (float:SF (reg:SI 0 r0 [ b ]))
            (const_double:SF -4.656612873077392578125e-10 [-0x0.8p-30])))

is a legitimate instruction.

vfp3_const_double_for_fract_bits() needs to be made aware that negative values
cannot be used in this context.

This is almost certainly a regression since the pattern was added.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.8 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2014-09-30 10:21 ` [Bug target/63408] [4.8 regression] " rearnsha at gcc dot gnu.org
@ 2014-11-19 13:28 ` rguenth at gcc dot gnu.org
  2014-12-10 13:11 ` [Bug target/63408] [4.8/4.9/5 " rguenth at gcc dot gnu.org
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-11-19 13:28 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.8.4


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.8/4.9/5 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2014-11-19 13:28 ` [Bug target/63408] [4.8 regression] GCC emits incorrect fixed->fp conversion " rguenth at gcc dot gnu.org
@ 2014-12-10 13:11 ` rguenth at gcc dot gnu.org
  2014-12-19 13:35 ` jakub at gcc dot gnu.org
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-12-10 13:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |wrong-code
           Priority|P3                          |P2
            Summary|[4.8 regression] GCC emits  |[4.8/4.9/5 regression] GCC
                   |incorrect fixed->fp         |emits incorrect fixed->fp
                   |conversion instruction on   |conversion instruction on
                   |Cortex-M4 target            |Cortex-M4 target

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
But supposedly not only on the 4.8 branch.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.8/4.9/5 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2014-12-10 13:11 ` [Bug target/63408] [4.8/4.9/5 " rguenth at gcc dot gnu.org
@ 2014-12-19 13:35 ` jakub at gcc dot gnu.org
  2015-01-20  9:31 ` ramana at gcc dot gnu.org
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-12-19 13:35 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.4                       |4.8.5

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.8.4 has been released.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.8/4.9/5 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2014-12-19 13:35 ` jakub at gcc dot gnu.org
@ 2015-01-20  9:31 ` ramana at gcc dot gnu.org
  2015-06-21 14:55 ` [Bug target/63408] [4.8/4.9/5/6 " itay at phobotic dot com
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: ramana at gcc dot gnu.org @ 2015-01-20  9:31 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

Ramana Radhakrishnan <ramana at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |ramana at gcc dot gnu.org

--- Comment #6 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
Mine.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.8/4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2015-01-20  9:31 ` ramana at gcc dot gnu.org
@ 2015-06-21 14:55 ` itay at phobotic dot com
  2015-06-23  8:16 ` rguenth at gcc dot gnu.org
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: itay at phobotic dot com @ 2015-06-21 14:55 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #7 from Itay Perl <itay at phobotic dot com> ---
Any news? This bug still prevents us from compiling our code with
optimizations.

Thanks.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.8/4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2015-06-21 14:55 ` [Bug target/63408] [4.8/4.9/5/6 " itay at phobotic dot com
@ 2015-06-23  8:16 ` rguenth at gcc dot gnu.org
  2015-06-23 11:19 ` [Bug target/63408] [4.9/5/6 " ramana at gcc dot gnu.org
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-06-23  8:16 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.5                       |4.9.3

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
The gcc-4_8-branch is being closed, re-targeting regressions to 4.9.3.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2015-06-23  8:16 ` rguenth at gcc dot gnu.org
@ 2015-06-23 11:19 ` ramana at gcc dot gnu.org
  2015-06-23 12:57 ` itay at phobotic dot com
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: ramana at gcc dot gnu.org @ 2015-06-23 11:19 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #9 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
(In reply to Itay Perl from comment #7)
> Any news? This bug still prevents us from compiling our code with
> optimizations.
> 
> Thanks.

Sorry to have dropped the ball on this one - does replacing the vfma
instruction with vfms work for you in the example i.e. can you provide me with
a couple of input values for a and b that break for me to verify this is fine
across a range of implementations ?

Ramana


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2015-06-23 11:19 ` [Bug target/63408] [4.9/5/6 " ramana at gcc dot gnu.org
@ 2015-06-23 12:57 ` itay at phobotic dot com
  2015-06-23 13:48 ` ramana at gcc dot gnu.org
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: itay at phobotic dot com @ 2015-06-23 12:57 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #10 from Itay Perl <itay at phobotic dot com> ---
A few examples:

a=100, b=0x7fffffff          -O0: 0.0   -O3: 200.0
a=0,   b=0x7fffffff/100.0f   -O0: -1.0  -O3: 1.0
a=0,   b=-0x7fffffff/100.0f  -O0: 1.0   -O3: -1.0

Replacing vfma with vfms sounds correct to me, and returns the correct result
for the above inputs.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2015-06-23 12:57 ` itay at phobotic dot com
@ 2015-06-23 13:48 ` ramana at gcc dot gnu.org
  2015-06-23 16:16 ` ramana at gcc dot gnu.org
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: ramana at gcc dot gnu.org @ 2015-06-23 13:48 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #11 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
(In reply to Itay Perl from comment #10)
> A few examples:
> 
> a=100, b=0x7fffffff          -O0: 0.0   -O3: 200.0
> a=0,   b=0x7fffffff/100.0f   -O0: -1.0  -O3: 1.0
> a=0,   b=-0x7fffffff/100.0f  -O0: 1.0   -O3: -1.0
> 
> Replacing vfma with vfms sounds correct to me, and returns the correct
> result for the above inputs.

Thanks - I'm testing a fix.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2015-06-23 13:48 ` ramana at gcc dot gnu.org
@ 2015-06-23 16:16 ` ramana at gcc dot gnu.org
  2015-06-24  8:28 ` ramana at gcc dot gnu.org
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: ramana at gcc dot gnu.org @ 2015-06-23 16:16 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #12 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
Created attachment 35833
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35833&action=edit
current patch.

Patch I'm testing - this is based on a 4.9 tree where I could easily replicate
the problem but applies cleanly to trunk.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2015-06-23 16:16 ` ramana at gcc dot gnu.org
@ 2015-06-24  8:28 ` ramana at gcc dot gnu.org
  2015-06-25  8:36 ` ramana at gcc dot gnu.org
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: ramana at gcc dot gnu.org @ 2015-06-24  8:28 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #13 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
Author: ramana
Date: Wed Jun 24 08:28:08 2015
New Revision: 224879

URL: https://gcc.gnu.org/viewcvs?rev=224879&root=gcc&view=rev
Log:
Fix PR target/63408

The attached patch fixes PR target/63408 and adds a regression test
for the same. The problem is essentially that
vfp3_const_double_for_fract_bits() needs to be aware that negative
values cannot be used in this context.

Tested with a bootstrap and regression test run on armhf. Applied.




2015-06-24  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        PR target/63408
        * config/arm/arm.c (vfp3_const_double_for_fract_bits): Disable
        for negative numbers.

2015-06-24  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        PR target/63408
        * gcc.target/arm/pr63408.c: New test.


Added:
    trunk/gcc/testsuite/gcc.target/arm/pr63408.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/arm/arm.c
    trunk/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2015-06-24  8:28 ` ramana at gcc dot gnu.org
@ 2015-06-25  8:36 ` ramana at gcc dot gnu.org
  2015-06-26 20:03 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 18+ messages in thread
From: ramana at gcc dot gnu.org @ 2015-06-25  8:36 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #14 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
Author: ramana
Date: Thu Jun 25 08:36:03 2015
New Revision: 224933

URL: https://gcc.gnu.org/viewcvs?rev=224933&root=gcc&view=rev
Log:
Fix PR target/63408

Backport fix for PR target/63408 from mainline

The attached patch fixes PR target/63408 and adds a regression test
for the same. The problem is essentially that
vfp3_const_double_for_fract_bits() needs to be aware that negative
values cannot be used in this context.

Tested with a bootstrap and regression test run on armhf. Applied.

2015-06-25  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        Backport from mainline.
        2015-06-24  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
        PR target/63408
        * config/arm/arm.c (vfp3_const_double_for_fract_bits): Disable
        for negative numbers.

2015-06-25  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        Backport from mainline.
        2015-06-24  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
        PR target/63408
        * gcc.target/arm/pr63408.c: New test.


Added:
    branches/gcc-5-branch/gcc/testsuite/gcc.target/arm/pr63408.c
      - copied unchanged from r224879,
trunk/gcc/testsuite/gcc.target/arm/pr63408.c
Modified:
    branches/gcc-5-branch/gcc/ChangeLog
    branches/gcc-5-branch/gcc/config/arm/arm.c
    branches/gcc-5-branch/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2015-06-25  8:36 ` ramana at gcc dot gnu.org
@ 2015-06-26 20:03 ` jakub at gcc dot gnu.org
  2015-06-26 20:33 ` jakub at gcc dot gnu.org
  2015-07-01  8:02 ` ramana at gcc dot gnu.org
  17 siblings, 0 replies; 18+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:03 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #15 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.9.3 has been released.


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (15 preceding siblings ...)
  2015-06-26 20:03 ` jakub at gcc dot gnu.org
@ 2015-06-26 20:33 ` jakub at gcc dot gnu.org
  2015-07-01  8:02 ` ramana at gcc dot gnu.org
  17 siblings, 0 replies; 18+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:33 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.9.3                       |4.9.4


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [Bug target/63408] [4.9/5/6 regression] GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target
       [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
                   ` (16 preceding siblings ...)
  2015-06-26 20:33 ` jakub at gcc dot gnu.org
@ 2015-07-01  8:02 ` ramana at gcc dot gnu.org
  17 siblings, 0 replies; 18+ messages in thread
From: ramana at gcc dot gnu.org @ 2015-07-01  8:02 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63408

--- Comment #16 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
Author: ramana
Date: Wed Jul  1 08:01:57 2015
New Revision: 225226

URL: https://gcc.gnu.org/viewcvs?rev=225226&root=gcc&view=rev
Log:
Fix PR target/63408 on the 4.9 branch.

2015-07-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        Backport from mainline
        2015-06-24  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        PR target/63408
        * config/arm/arm.c (vfp3_const_double_for_fract_bits): Disable
        for negative numbers.

2015-07-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        Backport from mainline
        2015-06-24  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

        PR target/63408
        * gcc.target/arm/pr63408.c: New test.



Added:
    branches/gcc-4_9-branch/gcc/testsuite/gcc.target/arm/pr63408.c
      - copied unchanged from r224879,
trunk/gcc/testsuite/gcc.target/arm/pr63408.c
Modified:
    branches/gcc-4_9-branch/gcc/ChangeLog
    branches/gcc-4_9-branch/gcc/config/arm/arm.c
    branches/gcc-4_9-branch/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2015-07-01  8:02 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-63408-4@http.gcc.gnu.org/bugzilla/>
2014-09-29 18:21 ` [Bug target/63408] GCC emits incorrect FMA instruction on Cortex-M4 target pinskia at gcc dot gnu.org
2014-09-29 19:22 ` itay at phobotic dot com
2014-09-30 10:21 ` [Bug target/63408] [4.8 regression] " rearnsha at gcc dot gnu.org
2014-11-19 13:28 ` [Bug target/63408] [4.8 regression] GCC emits incorrect fixed->fp conversion " rguenth at gcc dot gnu.org
2014-12-10 13:11 ` [Bug target/63408] [4.8/4.9/5 " rguenth at gcc dot gnu.org
2014-12-19 13:35 ` jakub at gcc dot gnu.org
2015-01-20  9:31 ` ramana at gcc dot gnu.org
2015-06-21 14:55 ` [Bug target/63408] [4.8/4.9/5/6 " itay at phobotic dot com
2015-06-23  8:16 ` rguenth at gcc dot gnu.org
2015-06-23 11:19 ` [Bug target/63408] [4.9/5/6 " ramana at gcc dot gnu.org
2015-06-23 12:57 ` itay at phobotic dot com
2015-06-23 13:48 ` ramana at gcc dot gnu.org
2015-06-23 16:16 ` ramana at gcc dot gnu.org
2015-06-24  8:28 ` ramana at gcc dot gnu.org
2015-06-25  8:36 ` ramana at gcc dot gnu.org
2015-06-26 20:03 ` jakub at gcc dot gnu.org
2015-06-26 20:33 ` jakub at gcc dot gnu.org
2015-07-01  8:02 ` ramana at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).