aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tm/20100615-2.c
blob: 4341e7d35ea8f4fb2e48fd8326c82a935edb7d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */
/* { dg-options "-fgnu-tm -O" } */

__attribute__((transaction_safe))
void Info_RemoveKey (char *s)
{
	char    *o = 0;
	while (1)
	{
		s++;
		while (*s)
		{
			if (!*s)
				return;
			*o++ = *s++;
		}
		*o = 0;
	}
}