Commit 9a7013f8 by Martin Sebor Committed by Martin Sebor

Remove duplicate copy of the test body inadvertently inserted by patch.

From-SVN: r233045
parent 8131b4d7
2016-02-01 Martin Sebor <msebor@redhat.com>
* gcc.target/powerpc/pr17381.c: Remove duplicate copy of the test body.
2016-02-01 Bin Cheng <bin.cheng@arm.com>
PR tree-optimization/67921
......
......@@ -9,14 +9,3 @@ float test1(float fParm)
return fParm + 1.0f;
}
/* { dg-final { scan-assembler-times "fmr" 1 } } */
/* PR target/17381 - Unnecessary register move for float extend */
/* { dg-do compile } */
/* { dg-options "-O2" } */
double d;
float test1(float fParm)
{
d = fParm + 1.0;
return fParm + 1.0f;
}
/* { dg-final { scan-assembler-times "fmr" 1 } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment