This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

c++/7015: certain __asm__ constructs rejected


>Number:         7015
>Category:       c++
>Synopsis:       certain __asm__ constructs rejected
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          rejects-legal
>Submitter-Id:   net
>Arrival-Date:   Thu Jun 13 04:06:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Jan Beulich
>Release:        3.1
>Organization:
>Environment:
Cross compilers running on Cygwin (Win2K).
>Description:
finish_asm_stmt, in its output_operands loop, sets 'operand'
to the same value for all output operands, thus causing
problems with the mark_addressable call at the bottom of the
loop.
>How-To-Repeat:
The problem is obvious, and I don't have a specific example
at hand.
>Fix:
Replace

operand = TREE_VALUE (output_operands);

with

operand = TREE_VALUE (t);
>Release-Note:
>Audit-Trail:
>Unformatted:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]