* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20120830-1.c
blobe0453ca6c5281050f51d8809476f084abb752e1f
1 int keyring_search(void);
2 int keydb_search2 (int *hdfound, int *hdcurrent, int *a)
4 int rc = -1;
5 while (rc == -1) {
6 if (*a == 1)
7 rc = keyring_search ();
8 if (rc == -1)
9 *hdcurrent++;
10 if (!rc)
11 *hdfound = *hdcurrent;
13 return rc;