fma-check.h (main): Use return 0 instead of exit (0).

* gcc.target/i386/fma-check.h (main): Use return 0 instead of exit (0).
	* gcc.target/i386/fma4-check.h (main): Ditto.
	* gcc.target/i386/xop-check.h (main): Ditto.

From-SVN: r180656
This commit is contained in:
Uros Bizjak 2011-10-29 19:26:48 +02:00 committed by Uros Bizjak
parent 9a20164505
commit d1fecc879e
4 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2011-10-29 Uros Bizjak <ubizjak@gmail.com>
* gcc.target/i386/fma-check.h (main): Use return 0 instead of exit (0).
* gcc.target/i386/fma4-check.h (main): Ditto.
* gcc.target/i386/xop-check.h (main): Ditto.
2011-10-28 Paolo Carlini <paolo.carlini@oracle.com>
Revert:

View File

@ -21,5 +21,5 @@ main ()
if (ecx & bit_FMA)
do_test ();
exit (0);
return 0;
}

View File

@ -23,5 +23,5 @@ main ()
if (ecx & bit_FMA4)
do_test ();
exit (0);
return 0;
}

View File

@ -24,5 +24,5 @@ main ()
if (ecx & bit_XOP)
do_test ();
exit (0);
return 0;
}