home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / binutils-2.7-src.tgz / tar.out / fsf / binutils / ld / testsuite / ld-empic / relax2.c < prev    next >
Text File  |  1996-09-28  |  252b  |  20 lines

  1. /* Second source file in relaxation test.  */
  2.  
  3. int bar2 ()
  4. {
  5.   int i;
  6.  
  7.   for (i = 0; i < 100; i++)
  8.     foo ();
  9.   return foo () + foo () + foo () + foo ();
  10. }
  11.  
  12. int bar (int i)
  13. {
  14.   while (1)
  15.     if (i)
  16.       return foo ();
  17.     else
  18.       return foo ();
  19. }
  20.