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

From-SVN: r43810
This commit is contained in:
Jeffrey A Law 2001-07-06 15:30:03 +00:00 committed by Jeff Law
parent fc6aa0a98a
commit d9249616b4
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Fri Jul 6 09:31:43 2001 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/20010706-1.c: New test.
2000-09-10 Michael Chamberlain <michael@chamberlain.net.au>
* gcc.misc-tests/mg.exp (compiler_output): Support tcl 8.3.1.

View File

@ -0,0 +1,5 @@
foo(unsigned int x)
{
return (x << 1) | (x >> 31);
}