diff options
author | Richard Henderson <rth@redhat.com> | 2002-04-02 00:35:51 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-04-02 00:35:51 -0800 |
commit | c8b947688ff5b2a16d7b79a8c8cc1170cc0c227e (patch) | |
tree | 1362491ee061f59949150f7ad16a80817b707580 /gcc/final.c | |
parent | 9cb88bc20c84072e28f9a15dc91ba0505821ca4d (diff) | |
download | gcc-c8b947688ff5b2a16d7b79a8c8cc1170cc0c227e.zip gcc-c8b947688ff5b2a16d7b79a8c8cc1170cc0c227e.tar.gz gcc-c8b947688ff5b2a16d7b79a8c8cc1170cc0c227e.tar.bz2 |
re PR rtl-optimization/190 (Optimization bug for x86 target)
PR opt/190
* final.c (this_is_asm_operands): Export.
* output.h (this_is_asm_operands): Declare.
* config/i386/i386.c (print_operand): Error odd asm operands.
From-SVN: r51741
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c index 47dd455..4992ced 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -122,7 +122,7 @@ extern int length_unit_log; /* This is defined in insn-attrtab.c. */ /* Nonzero while outputting an `asm' with operands. This means that inconsistencies are the user's fault, so don't abort. The precise value is the insn being output, to pass to error_for_asm. */ -static rtx this_is_asm_operands; +rtx this_is_asm_operands; /* Number of operands of this insn, for an `asm' with operands. */ static unsigned int insn_noperands; |