aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1992-07-06 16:25:01 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1992-07-06 16:25:01 -0400
commit7471ffd8a6b51c4862b616dc35ed164c5ec7dcbd (patch)
treed7f67a34d724d4e06bb37b2ca3d7039f91b9c3da
parent82a5e8985ccd0adc31b6208c55658b4b44eea7b7 (diff)
downloadgcc-7471ffd8a6b51c4862b616dc35ed164c5ec7dcbd.zip
gcc-7471ffd8a6b51c4862b616dc35ed164c5ec7dcbd.tar.gz
gcc-7471ffd8a6b51c4862b616dc35ed164c5ec7dcbd.tar.bz2
*** empty log message ***
From-SVN: r1478
-rw-r--r--gcc/gcc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index a2fc595..bdf9995 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;