From: Uros Bizjak Date: Sun, 30 Sep 2012 19:27:08 +0000 (+0200) Subject: pad-10.c (foo2): Return x - z. X-Git-Tag: misc/gccgo-go1_1_2~548 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40bdac025f98e370b38ba2bd4eb05d5f1b805bc4;p=thirdparty%2Fgcc.git pad-10.c (foo2): Return x - z. * gcc.target/i386/pad-10.c (foo2): Return x - z. From-SVN: r191879 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 54503fe2dc1e..8b0c58df86f8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2012-09-30 Uros Bizjak + + * gcc.target/i386/pad-10.c (foo2): Return x - z. + 2012-09-30 Richard Sandiford * gcc.target/mips/pr37362.c: Fix target selector. @@ -19,7 +23,7 @@ * gfortran.dg/c_f_pointer_shape_test.f90: Ditto. * gfortran.dg/c_f_pointer_tests_5.f90: New. -2012-09-30 Janus Weil +2012-09-30 Janus Weil * gfortran.dg/allocate_derived_1.f90: Re-enable class array checks, partially reverting r170092. @@ -79,7 +83,7 @@ 2012-09-28 Dodji Seketeli * g++.dg/warn/Wunused-local-typedefs-3.C: Move the c++-only test - gcc/testsuite/c-c++-common/Wunused-local-typedefs-2.c to here. + gcc/testsuite/c-c++-common/Wunused-local-typedefs-2.c to here. PR c++/54372 - unused attribute inactive on dependant entities * c-c++-common/Wunused-local-typedefs-2.c: New test. diff --git a/gcc/testsuite/gcc.target/i386/pad-10.c b/gcc/testsuite/gcc.target/i386/pad-10.c index d721c64a5c82..cd65041fd5d6 100644 --- a/gcc/testsuite/gcc.target/i386/pad-10.c +++ b/gcc/testsuite/gcc.target/i386/pad-10.c @@ -15,5 +15,5 @@ foo2 (int z, int x) return z; } else - return x + z; + return x - z; }