* gcc.c-torture/compile/20000609-1.c: New test.

From-SVN: r34495
This commit is contained in:
Jeffrey A Law 2000-06-11 20:03:20 +00:00 committed by Jeff Law
parent 65377a89bf
commit 83c137d7a0
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Fri Jun 9 22:46:34 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/20000609-1.c: New test.
Fri Jun 9 21:54:28 2000 Clinton Popetz <cpopetz@cygnus.com>
* gcc.dg/20000609-1.c: New test.

View File

@ -0,0 +1,6 @@
int main ()
{
char temp[1024] = "tempfile";
return temp[0] != 't';
}