This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed] [PATCH, AARCH64] mov<mode>cc for fcsel


On 28 April 2014 18:16, Marcus Shawcroft <marcus.shawcroft@gmail.com> wrote:
> On 22 April 2014 10:36, Zhenqiang Chen <zhenqiang.chen@linaro.org> wrote:
>
>>> +float f1 (float a, float b, float c, float d)
>>> +{
>>> +  if (a > 0.0)
>>> +    return c;
>>> +  else
>>> +    return 2.0;
>>> +}
>>> +
>>> +double f2 (double a, double b, double c, double d)
>>> +{
>>> +  if (a > b)
>>> +    return c;
>>> +  else
>>> +    return d;
>>> +}
>
> OK, but please GNUize the test case, function names start in column 1
> and the test case file names should end in _1.c

Thanks! Patch with test case changes was committed @r209889.

-Zhenqiang


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]