public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: target/3023: Failure of  test gcc.dg/asm-fs-1.c on cygwin
@ 2001-11-10 10:46 billingd
  0 siblings, 0 replies; 4+ messages in thread
From: billingd @ 2001-11-10 10:46 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR target/3023; it has been noted by GNATS.

From: billingd@gcc.gnu.org
To: David.Billinghurst@riotinto.com, gcc-bugs@gcc.gnu.org,
  gcc-gnats@gcc.gnu.org, gcc-prs@gcc.gnu.org, nobody@gcc.gnu.org
Cc:  
Subject: Re: target/3023: Failure of  test gcc.dg/asm-fs-1.c on cygwin
Date: 18 Nov 2001 12:10:38 -0000

 Synopsis: Failure of  test gcc.dg/asm-fs-1.c on cygwin
 
 State-Changed-From-To: open->closed
 State-Changed-By: billingd
 State-Changed-When: Sun Nov 18 04:10:37 2001
 State-Changed-Why:
     Fixed by http://gcc.gnu.org/ml/gcc-patches/2001-11/msg00913.html
 
 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&pr=3023&database=gcc


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: target/3023: Failure of  test gcc.dg/asm-fs-1.c on cygwin
@ 2001-11-10  7:26 billingd
  0 siblings, 0 replies; 4+ messages in thread
From: billingd @ 2001-11-10  7:26 UTC (permalink / raw)
  To: David.Billinghurst, gcc-bugs, gcc-gnats, gcc-prs, nobody

Synopsis: Failure of  test gcc.dg/asm-fs-1.c on cygwin

State-Changed-From-To: open->closed
State-Changed-By: billingd
State-Changed-When: Sun Nov 18 04:10:37 2001
State-Changed-Why:
    Fixed by http://gcc.gnu.org/ml/gcc-patches/2001-11/msg00913.html

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&pr=3023&database=gcc


^ permalink raw reply	[flat|nested] 4+ messages in thread

* re: target/3023 Failure of test gcc.dg/asm-fs-1.c on cygwin
@ 2001-08-23 17:26 Billinghurst, David (CRTS)
  0 siblings, 0 replies; 4+ messages in thread
From: Billinghurst, David (CRTS) @ 2001-08-23 17:26 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR target/3023; it has been noted by GNATS.

From: "Billinghurst, David (CRTS)" <David.Billinghurst@riotinto.com>
To: "'gcc-gnats@gcc.gnu.org'" <gcc-gnats@gcc.gnu.org>,
   "'gcc-prs@gcc.gnu.org'" <gcc-prs@gcc.gnu.org>,
   "Billinghurst, David (CRTS)" <David.Billinghurst@riotinto.com>,
   "'gcc-bugs@gcc.gnu.org'" <gcc-bugs@gcc.gnu.org>,
   "'nobody@gcc.gnu.org'"
	 <nobody@gcc.gnu.org>
Cc:  
Subject: re: target/3023 Failure of test gcc.dg/asm-fs-1.c on cygwin 
Date: Fri, 24 Aug 2001 00:20:10 -0000

 See also PR target/4107 Failure of 23_containers/bitset_shift.cc on cygwin 
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* target/3023: Failure of  test gcc.dg/asm-fs-1.c on cygwin
@ 2001-05-31 22:26 David.Billinghurst
  0 siblings, 0 replies; 4+ messages in thread
From: David.Billinghurst @ 2001-05-31 22:26 UTC (permalink / raw)
  To: gcc-gnats

>Number:         3023
>Category:       target
>Synopsis:       Failure of  test gcc.dg/asm-fs-1.c on cygwin
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Thu May 31 22:26:00 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     David Billinghurst
>Release:        unknown-1.0
>Organization:
>Environment:
i686-pc-cygwin
>Description:
The failure of test gcc.dg/asm-fs-1.c on cygwin is a regression from gcc-2.95.

FAIL: gcc.dg/asm-fs-1.c scan-assembler-not \*_bar

The assembler output

	.file	"asm-fs-1.c"
..section	.text$*_bar,"x"
	.align 16
..globl _bar
	.def	_bar;	.scl	2;	.type	32;	.endef
_bar:
	pushl	%ebp
	movl	%esp, %ebp
	popl	%ebp
	ret
..globl _baz
..section	.data$*_baz,"w"
	.align 4
_baz:
	.long	3


With gcc version 2.95.3-4 (cygwin special) I get

        .file   "asm-fs-1.c"
gcc2_compiled.:
        .file   "asm-fs-1.c"
gcc2_compiled.:
___gnu_compiled_c:
.text
        .align 4
.globl _bar
        .def    _bar;   .scl    2;      .type   32;     .endef
_bar:
        pushl %ebp
        movl %esp,%ebp
L2:
        movl %ebp,%esp
        popl %ebp
        ret
.globl _baz
.data
        .align 4
_baz:
        .long 3


Alexandre Oliva said:

It tests that the `*' doesn't make it to the output ssembly.  Since it does, the test fails, indicating a bug in the Cygwin output macros.

> .section	.text$*_bar,"x"
                      ^
> .section	.data$*_baz,"w"
                      ^




>How-To-Repeat:
gcc -S gcc/testsuite/gcc.dg/asm-fs-1.c
examine asm-fs-1.s
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2001-11-18 12:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-11-10 10:46 target/3023: Failure of test gcc.dg/asm-fs-1.c on cygwin billingd
  -- strict thread matches above, loose matches on Subject: below --
2001-11-10  7:26 billingd
2001-08-23 17:26 target/3023 " Billinghurst, David (CRTS)
2001-05-31 22:26 target/3023: " David.Billinghurst

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).