Commit 3ea71f13 by Balaji V. Iyer Committed by Balaji V. Iyer

sec_implicit_ex.c (main): Replaced abort and exit function calls with return 1…

sec_implicit_ex.c (main): Replaced abort and exit function calls with return 1 and return 0, respectively.

2013-06-12  Balaji V. Iyer  <balaji.v.iyer@intel.com>

	* c-c++-common/cilk-plus/AN/sec_implicit_ex.c (main): Replaced abort
	and exit function calls with return 1 and return 0, respectively.

From-SVN: r200038
parent 710b6cc1
2013-06-12 Balaji V. Iyer <balaji.v.iyer@intel.com>
* c-c++-common/cilk-plus/AN/sec_implicit_ex.c (main): Replaced abort
and exit function calls with return 1 and return 0, respectively.
2013-06-12 Richard Sandiford <rdsandiford@googlemail.com>
* gcc.target/mips/umips-branch-1.c, gcc.target/mips/umips-branch-2.c:
......
/* { dg-do run } */
/* { dg-options "-fcilkplus" } */
void abort (void);
void exit (int);
int main(void)
{
int jj, kk, array_3C[10][10][10];
......@@ -24,10 +20,7 @@ int main(void)
for (jj = 0; jj < 10; jj++)
for (kk = 0; kk < 10; kk++)
if (array_3[ii][jj][kk] != array_3C[ii][jj][kk])
abort ();
exit (0);
return 1;
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