diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-25 14:34:44 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-25 14:34:44 -0500 |
commit | e3da71efe260400071275b68a3940920da542508 (patch) | |
tree | 65b002df8a35d5216e70bbb4e69d9b2e5e7b4829 | |
parent | d7084298a87c9e9128bafc156774c6073918af85 (diff) | |
download | gcc-e3da71efe260400071275b68a3940920da542508.zip gcc-e3da71efe260400071275b68a3940920da542508.tar.gz gcc-e3da71efe260400071275b68a3940920da542508.tar.bz2 |
(expand_asm, expand_asm_operands): Change error message text.
From-SVN: r8808
-rw-r--r-- | gcc/stmt.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* Expands front end tree to back end RTL for GNU C-Compiler - Copyright (C) 1987, 88, 89, 92, 93, 1994 Free Software Foundation, Inc. + Copyright (C) 1987, 88, 89, 92, 93, 94, 1995 Free Software Foundation, Inc. This file is part of GNU CC. @@ -1319,7 +1319,7 @@ expand_asm (body) { if (output_bytecode) { - error ("`asm' is illegal when generating bytecode"); + error ("`asm' is invalid when generating bytecode"); return; } @@ -1367,7 +1367,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line) if (output_bytecode) { - error ("`asm' is illegal when generating bytecode"); + error ("`asm' is invalid when generating bytecode"); return; } |