From: Richard Kenner Date: Mon, 6 Jul 1992 20:25:01 +0000 (-0400) Subject: *** empty log message *** X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7471ffd8a6b51c4862b616dc35ed164c5ec7dcbd;p=gcc.git *** empty log message *** From-SVN: r1478 --- diff --git a/gcc/gcc.c b/gcc/gcc.c index a2fc595dd01..bdf99954355 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -2373,11 +2373,11 @@ do_spec_1 (spec, inswitch, soft_matched_part) case 'I': if (gcc_exec_prefix) { - do_spec_1 ("-iprefix", 1, 0); + do_spec_1 ("-iprefix", 1, NULL_PTR); /* Make this a separate argument. */ - do_spec_1 (" ", 0, 0); - do_spec_1 (gcc_exec_prefix, 1, 0); - do_spec_1 (" ", 0, 0); + do_spec_1 (" ", 0, NULL_PTR); + do_spec_1 (gcc_exec_prefix, 1, NULL_PTR); + do_spec_1 (" ", 0, NULL_PTR); } break;