aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/ieee/980619-1.c
blob: 0465ed51c8b3e82e7aa08f6dafdd6b449946a1c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
	int main(void)
	{
		float reale = 1.0f;
		float oneplus;
		int i;
	
	 	if (sizeof (float) != 4)
		  exit (0);

		for (i = 0; ; i++)
		{
			oneplus = 1.0f + reale;
			if (oneplus == 1.0f)
				break;
			reale=reale/2.0f;
		}
		/* Assumes ieee754 accurate arithmetic above.  */
		if (i != 24)
		  abort ();
		else
		  exit (0);
	}