* gcc.dg/conv-1.c: New test.

From-SVN: r31626
This commit is contained in:
Alexandre Oliva 2000-01-26 07:14:06 +00:00 committed by Alexandre Oliva
parent 5850dc005d
commit 3ebed0b2f8
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-01-26 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* gcc.dg/conv-1.c: New test.
2000-01-24 Mark Mitchell <mark@codesourcery.com>
* lib/g++.exp (g++init): Use g++, not xgcc, to invoke the C++

View File

@ -0,0 +1,11 @@
/* Copyright (C) 2000 Free Software Foundation.
by Alexandre Oliva <oliva@lsd.ic.unicamp.br> */
/* { dg-do compile } */
double
foo (unsigned long var)
{
return var;
}