* gcc.c-torture/compile/20000314-2.c: New test.

From-SVN: r32531
This commit is contained in:
Jeffrey A Law 2000-03-14 16:28:08 +00:00 committed by Jeff Law
parent eb61c012cf
commit 263ac0d832
2 changed files with 9 additions and 2 deletions

View file

@ -1,7 +1,8 @@
Tue Mar 14 08:58:37 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/2000314-1.c: New test.
* gcc.c-torture/compile/2000314-1.c: New test.
* gcc.c-torture/execute/20000314-1.c: New test.
* gcc.c-torture/compile/20000314-2.c: New test.
* gcc.c-torture/compile/20000314-1.c: New test.
2000-03-13 Nathan Sidwell <nathan@codesourcery.com>

View file

@ -0,0 +1,6 @@
extern void malloc(size_t size);
toto()
{
malloc(100);
}