public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/46895] New: FAIL: gcc.target/i386/max-stack-align.c
@ 2010-12-11 17:41 hjl.tools at gmail dot com
  2010-12-12  9:21 ` [Bug testsuite/46895] " ubizjak at gmail dot com
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: hjl.tools at gmail dot com @ 2010-12-11 17:41 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46895

           Summary: FAIL: gcc.target/i386/max-stack-align.c
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: hjl.tools@gmail.com


On Linux/ia32, revision 167711 gave:

export/gnu/import/git/gcc/gcc/testsuite/gcc.target/i386/max-stack-align.c: In
function 'foo':^M
/export/gnu/import/git/gcc/gcc/testsuite/gcc.target/i386/max-stack-align.c:7:8:
error: can't find a register in class 'GENERAL_REGS' while reloading 'asm'^M
/export/gnu/import/git/gcc/gcc/testsuite/gcc.target/i386/max-stack-align.c:7:8:
error: 'asm' operand has impossible constraints^M

FAIL: gcc.target/i386/max-stack-align.c (test for excess errors)


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

* [Bug testsuite/46895] FAIL: gcc.target/i386/max-stack-align.c
  2010-12-11 17:41 [Bug middle-end/46895] New: FAIL: gcc.target/i386/max-stack-align.c hjl.tools at gmail dot com
@ 2010-12-12  9:21 ` ubizjak at gmail dot com
  2010-12-12  9:30 ` ubizjak at gmail dot com
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: ubizjak at gmail dot com @ 2010-12-12  9:21 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46895

Uros Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|middle-end                  |testsuite

--- Comment #1 from Uros Bizjak <ubizjak at gmail dot com> 2010-12-12 09:20:43 UTC ---
This is 64bit specific test. See %rbp clobber.

Also, 8 input regs is a bit too much for 32bit targets.


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

* [Bug testsuite/46895] FAIL: gcc.target/i386/max-stack-align.c
  2010-12-11 17:41 [Bug middle-end/46895] New: FAIL: gcc.target/i386/max-stack-align.c hjl.tools at gmail dot com
  2010-12-12  9:21 ` [Bug testsuite/46895] " ubizjak at gmail dot com
@ 2010-12-12  9:30 ` ubizjak at gmail dot com
  2010-12-13 17:12 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: ubizjak at gmail dot com @ 2010-12-12  9:30 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46895

--- Comment #2 from Uros Bizjak <ubizjak at gmail dot com> 2010-12-12 09:30:35 UTC ---
/* { dg-do compile } */
/* { dg-options "-fomit-frame-pointer" } */

#ifdef __x86_64__
# define BP_REG "%rbp"
#else
# define BP_REG "%ebp"
#endif

void foo (void)
{
  __asm__ volatile ( "" ::: BP_REG );
}


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

* [Bug testsuite/46895] FAIL: gcc.target/i386/max-stack-align.c
  2010-12-11 17:41 [Bug middle-end/46895] New: FAIL: gcc.target/i386/max-stack-align.c hjl.tools at gmail dot com
  2010-12-12  9:21 ` [Bug testsuite/46895] " ubizjak at gmail dot com
  2010-12-12  9:30 ` ubizjak at gmail dot com
@ 2010-12-13 17:12 ` jakub at gcc dot gnu.org
  2010-12-13 17:49 ` asharif at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: jakub at gcc dot gnu.org @ 2010-12-13 17:12 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46895

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> 2010-12-13 17:11:52 UTC ---
Yeah, if #c2 tests what the test meant to test, then it is much preferrable
over the thing that got committed, which has lots of issues.


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

* [Bug testsuite/46895] FAIL: gcc.target/i386/max-stack-align.c
  2010-12-11 17:41 [Bug middle-end/46895] New: FAIL: gcc.target/i386/max-stack-align.c hjl.tools at gmail dot com
                   ` (2 preceding siblings ...)
  2010-12-13 17:12 ` jakub at gcc dot gnu.org
@ 2010-12-13 17:49 ` asharif at gcc dot gnu.org
  2010-12-13 18:50 ` asharif at gcc dot gnu.org
  2021-08-05 12:48 ` hjl.tools at gmail dot com
  5 siblings, 0 replies; 7+ messages in thread
From: asharif at gcc dot gnu.org @ 2010-12-13 17:49 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46895

asharif at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |asharif at gcc dot gnu.org

--- Comment #4 from asharif at gcc dot gnu.org 2010-12-13 17:49:40 UTC ---
(In reply to comment #3)
> Yeah, if #c2 tests what the test meant to test, then it is much preferrable
> over the thing that got committed, which has lots of issues.

Sorry about the trunk breakage. I reverted the testcase. Yes, it was meant for
x86-64. I'll fix the testcase and repost a patch to the mailing list.

Reverted in r167756.


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

* [Bug testsuite/46895] FAIL: gcc.target/i386/max-stack-align.c
  2010-12-11 17:41 [Bug middle-end/46895] New: FAIL: gcc.target/i386/max-stack-align.c hjl.tools at gmail dot com
                   ` (3 preceding siblings ...)
  2010-12-13 17:49 ` asharif at gcc dot gnu.org
@ 2010-12-13 18:50 ` asharif at gcc dot gnu.org
  2021-08-05 12:48 ` hjl.tools at gmail dot com
  5 siblings, 0 replies; 7+ messages in thread
From: asharif at gcc dot gnu.org @ 2010-12-13 18:50 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46895

--- Comment #5 from asharif at gcc dot gnu.org 2010-12-13 18:49:50 UTC ---
(In reply to comment #4)
> (In reply to comment #3)
> > Yeah, if #c2 tests what the test meant to test, then it is much preferrable
> > over the thing that got committed, which has lots of issues.
> 
> Sorry about the trunk breakage. I reverted the testcase. Yes, it was meant for
> x86-64. I'll fix the testcase and repost a patch to the mailing list.
> 
> Reverted in r167756.

Update:

The test doesn't do what #c3 is doing. The test is supposed to fail with this
patch: http://gcc.gnu.org/viewcvs?view=revision&revision=153780 and pass
otherwise. That patch limits the alignment to MAX_SUPPORTED_STACK_ALIGNMENT. 

The test described in #c3 will still pass with that patch. 


As far as the uninitialized variables are concerned, I can set them all to 0
and it doesn't affect whether the test passes or fails.

Can you assign this bug to me?

Also, can I submit my patch with the lp64 dejaGNU filter?

Thanks!


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

* [Bug testsuite/46895] FAIL: gcc.target/i386/max-stack-align.c
  2010-12-11 17:41 [Bug middle-end/46895] New: FAIL: gcc.target/i386/max-stack-align.c hjl.tools at gmail dot com
                   ` (4 preceding siblings ...)
  2010-12-13 18:50 ` asharif at gcc dot gnu.org
@ 2021-08-05 12:48 ` hjl.tools at gmail dot com
  5 siblings, 0 replies; 7+ messages in thread
From: hjl.tools at gmail dot com @ 2021-08-05 12:48 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=46895

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
   Target Milestone|---                         |4.6.0
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #6 from H.J. Lu <hjl.tools at gmail dot com> ---
Fixed in GCC 4.6.0 by r0-105460.

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

end of thread, other threads:[~2021-08-05 12:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-11 17:41 [Bug middle-end/46895] New: FAIL: gcc.target/i386/max-stack-align.c hjl.tools at gmail dot com
2010-12-12  9:21 ` [Bug testsuite/46895] " ubizjak at gmail dot com
2010-12-12  9:30 ` ubizjak at gmail dot com
2010-12-13 17:12 ` jakub at gcc dot gnu.org
2010-12-13 17:49 ` asharif at gcc dot gnu.org
2010-12-13 18:50 ` asharif at gcc dot gnu.org
2021-08-05 12:48 ` hjl.tools at gmail dot com

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).