diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-21 07:52:35 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-21 07:52:35 +0000 |
commit | 67cab541d1bcc771f5d983b1431c04ac3696d6ff (patch) | |
tree | d5dc684f17697bfcabcabc0c863574ca77ae3d2e /gcc/gcc.c | |
parent | 4822de6e49878a3807648c57b947aad193689adf (diff) | |
download | ppe42-gcc-67cab541d1bcc771f5d983b1431c04ac3696d6ff.tar.gz ppe42-gcc-67cab541d1bcc771f5d983b1431c04ac3696d6ff.zip |
* gcc.c (do_spec): Call "error" not "warning".
Opps.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@21319 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c index da6425cdc34..a1d2632e259 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -4039,7 +4039,7 @@ do_spec_1 (spec, inswitch, soft_matched_part) %[...] modifies -D options the way %P does; %(...) uses the spec unmodified. */ case '[': - warning ("use of obsolete %%[ operator in specs"); + error ("Warning: use of obsolete %%[ operator in specs"); case '(': { char *name = p; |