diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-07-06 16:25:01 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-07-06 16:25:01 -0400 |
commit | 7471ffd8a6b51c4862b616dc35ed164c5ec7dcbd (patch) | |
tree | d7f67a34d724d4e06bb37b2ca3d7039f91b9c3da | |
parent | 82a5e8985ccd0adc31b6208c55658b4b44eea7b7 (diff) | |
download | gcc-7471ffd8a6b51c4862b616dc35ed164c5ec7dcbd.zip gcc-7471ffd8a6b51c4862b616dc35ed164c5ec7dcbd.tar.gz gcc-7471ffd8a6b51c4862b616dc35ed164c5ec7dcbd.tar.bz2 |
*** empty log message ***
From-SVN: r1478
-rw-r--r-- | gcc/gcc.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |