aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJanis Johnson <janis187@us.ibm.com>2007-03-27 23:00:33 +0000
committerJanis Johnson <janis@gcc.gnu.org>2007-03-27 23:00:33 +0000
commit814735584bdd49576500e2f191ee37b34224268d (patch)
tree11412236d378075d7f500990b7abc10f5e337e45 /gcc
parent39418b53b8c180a31b9a4206915fb386da2117cf (diff)
downloadgcc-814735584bdd49576500e2f191ee37b34224268d.zip
gcc-814735584bdd49576500e2f191ee37b34224268d.tar.gz
gcc-814735584bdd49576500e2f191ee37b34224268d.tar.bz2
* gcc.dg/dfp/operandor-conf.c: Call init, fix typo.
From-SVN: r123275
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog2
-rw-r--r--gcc/testsuite/gcc.dg/dfp/operator-cond.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 4007078..47f9eab 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,5 +1,7 @@
2007-03-27 Janis Johnson <janis187@us.ibm.com>
+ * gcc.dg/dfp/operandor-conf.c: Call init, fix typo.
+
* lib/compat.exp (compat-execute): Fix processing of file names.
2007-03-27 Daniel Jacobowitz <dan@codesourcery.com>
diff --git a/gcc/testsuite/gcc.dg/dfp/operator-cond.c b/gcc/testsuite/gcc.dg/dfp/operator-cond.c
index ff712bd..5230134 100644
--- a/gcc/testsuite/gcc.dg/dfp/operator-cond.c
+++ b/gcc/testsuite/gcc.dg/dfp/operator-cond.c
@@ -39,12 +39,14 @@ init ()
int
main ()
{
+ init ();
+
/* Operands and the result are all the same decimal float type. */
d32a = yes ? d32b : d32c;
if (d32a != d32b)
FAILURE
d64a = no ? d64b : d64c;
- if (d64a != d64b)
+ if (d64a != d64c)
FAILURE
d128a = yes ? d128b : d128c;
if (d128a != d128b)