Commit d1fecc87 by Uros Bizjak Committed by Uros Bizjak

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
parent 9a201645
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:
......
......@@ -21,5 +21,5 @@ main ()
if (ecx & bit_FMA)
do_test ();
exit (0);
return 0;
}
......@@ -23,5 +23,5 @@ main ()
if (ecx & bit_FMA4)
do_test ();
exit (0);
return 0;
}
......@@ -24,5 +24,5 @@ main ()
if (ecx & bit_XOP)
do_test ();
exit (0);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment