diff options
| author | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-27 23:00:33 +0000 |
|---|---|---|
| committer | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-27 23:00:33 +0000 |
| commit | 87fbb84ea6201840617b03a9062b0c3e1f64b26d (patch) | |
| tree | 11412236d378075d7f500990b7abc10f5e337e45 | |
| parent | 097373ae32006d83d94a23a7648f43dbef82bd2d (diff) | |
| download | ppe42-gcc-87fbb84ea6201840617b03a9062b0c3e1f64b26d.tar.gz ppe42-gcc-87fbb84ea6201840617b03a9062b0c3e1f64b26d.zip | |
* gcc.dg/dfp/operandor-conf.c: Call init, fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123275 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 2 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/dfp/operator-cond.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 40070781196..47f9eab08c7 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 ff712bda30b..5230134f637 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) |

