Lines Matching refs:temp

214 /* Nonzero means write "temp" files in source directory
1917 temp file. If the HOST_BIT_BUCKET is used for %j, no entry is made for
2284 /* This is the common prefix we use to make temp file names.
2287 Thus, all temp file names contain this prefix.
2288 In practice, all temp file names start with this prefix.
2327 struct temp_file *temp;
2328 for (temp = always_delete_queue; temp; temp = temp->next)
2329 if (! strcmp (name, temp->name))
2332 temp = XNEW (struct temp_file);
2333 temp->next = always_delete_queue;
2334 temp->name = name;
2335 always_delete_queue = temp;
2342 struct temp_file *temp;
2343 for (temp = failure_delete_queue; temp; temp = temp->next)
2344 if (! strcmp (name, temp->name))
2347 temp = XNEW (struct temp_file);
2348 temp->next = failure_delete_queue;
2349 temp->name = name;
2350 failure_delete_queue = temp;
2391 struct temp_file *temp;
2393 for (temp = always_delete_queue; temp; temp = temp->next)
2394 delete_if_ordinary (temp->name);
2403 struct temp_file *temp;
2405 for (temp = failure_delete_queue; temp; temp = temp->next)
2406 delete_if_ordinary (temp->name);
3326 const char *temp;
3454 temp = gcc_exec_prefix + len - sizeof ("/lib/gcc/") + 1;
3455 if (IS_DIR_SEPARATOR (*temp)
3456 && strncmp (temp + 1, "lib", 3) == 0
3457 && IS_DIR_SEPARATOR (temp[4])
3458 && strncmp (temp + 5, "gcc", 3) == 0)
3472 GET_ENVIRONMENT (temp, "COMPILER_PATH");
3473 if (temp)
3476 char *nstore = alloca (strlen (temp) + 3);
3478 startp = endp = temp;
3506 GET_ENVIRONMENT (temp, LIBRARY_PATH_ENV);
3507 if (temp && *cross_compile == '0')
3510 char *nstore = alloca (strlen (temp) + 3);
3512 startp = endp = temp;
3539 GET_ENVIRONMENT (temp, "LPATH");
3540 if (temp && *cross_compile == '0')
3543 char *nstore = alloca (strlen (temp) + 3);
3545 startp = endp = temp;
3572 temp = getenv ("GCC_OPTIONS");
3573 if ((temp) && (strlen (temp) > 0))
3581 while (isspace (*temp))
3582 temp++;
3583 len = strlen (temp);
3585 strcpy (envopts, temp);
4027 /* -save-temps overrides -pipe, so that temp files are produced */
4953 generate a temp file as the intermediate. */