public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/23359] [4.1 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
@ 2005-10-25 20:15 ` pinskia at gcc dot gnu dot org
  2005-10-30 23:32 ` pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-25 20:15 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-10-25 20:15:55
               date|                            |


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


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

* [Bug target/23359] [4.1 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
  2005-10-25 20:15 ` [Bug target/23359] [4.1 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word pinskia at gcc dot gnu dot org
@ 2005-10-30 23:32 ` pinskia at gcc dot gnu dot org
  2006-01-31 19:36 ` [Bug target/23359] [4.1/4.2 " ro at techfak dot uni-bielefeld dot de
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-30 23:32 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P5
   Target Milestone|4.2.0                       |4.1.0


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
  2005-10-25 20:15 ` [Bug target/23359] [4.1 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word pinskia at gcc dot gnu dot org
  2005-10-30 23:32 ` pinskia at gcc dot gnu dot org
@ 2006-01-31 19:36 ` ro at techfak dot uni-bielefeld dot de
  2006-01-31 20:01 ` pinskia at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 12+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2006-01-31 19:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from ro at techfak dot uni-bielefeld dot de  2006-01-31 19:36 -------
Subject: Re:  [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with
native as: use of .word


> pinskia at gcc dot gnu dot org changed:
> 
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>    Last reconfirmed|2005-10-25 20:15:55         |2006-01-29 00:32:05
>                date|                            |

Indeed: it caused a bootstrap attempt on 20060126 to verify the status of PR
bootstrap/21936 to fail building libssp.

Any suggestions on how to fix this (i.e. how to deal with slight
differences in assembler syntax for instructions/pseudo-ops)?

        Rainer


-- 


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2006-01-31 19:36 ` [Bug target/23359] [4.1/4.2 " ro at techfak dot uni-bielefeld dot de
@ 2006-01-31 20:01 ` pinskia at gcc dot gnu dot org
  2006-01-31 20:08 ` ro at techfak dot uni-bielefeld dot de
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-31 20:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from pinskia at gcc dot gnu dot org  2006-01-31 20:01 -------
Can you try this patch:
Index: i386.md
===================================================================
--- i386.md     (revision 110427)
+++ i386.md     (working copy)
@@ -20199,7 +20199,9 @@
 (define_insn "trap"
   [(trap_if (const_int 1) (const_int 6))]
   ""
-  ".word\t0x0b0f"
+  {
+     return ASM_SHORT "0x0b0f";
+  }
   [(set_attr "length" "2")])

 (define_expand "sse_prologue_save"


I will try it on x86_64-linux-gnu as soon as my current/bootstrap is finished.


-- 


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2006-01-31 20:01 ` pinskia at gcc dot gnu dot org
@ 2006-01-31 20:08 ` ro at techfak dot uni-bielefeld dot de
  2006-01-31 21:56 ` ro at techfak dot uni-bielefeld dot de
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 12+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2006-01-31 20:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from ro at techfak dot uni-bielefeld dot de  2006-01-31 20:08 -------
Subject: Re:  [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with
native as: use of .word

pinskia at gcc dot gnu dot org writes:

> Can you try this patch:

sure, bootstrap in progress.

Thanks.
        Rainer


-- 


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2006-01-31 20:08 ` ro at techfak dot uni-bielefeld dot de
@ 2006-01-31 21:56 ` ro at techfak dot uni-bielefeld dot de
  2006-02-01 19:00 ` ro at techfak dot uni-bielefeld dot de
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 12+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2006-01-31 21:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from ro at techfak dot uni-bielefeld dot de  2006-01-31 21:56 -------
Subject: Re:  [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with
native as: use of .word

A --disable-multilib (the amd64 doesn't yet work with Solaris as) bootstrap
with the native as completed successfully after disabling libffi/libjava
(due to PR libffi/26048), especially libssp built unlike before.  I cannot
currently run all dejagnu-based tests due to PR target/26051 ;-(

        Rainer


-- 


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2006-01-31 21:56 ` ro at techfak dot uni-bielefeld dot de
@ 2006-02-01 19:00 ` ro at techfak dot uni-bielefeld dot de
  2006-02-01 19:13 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 12+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2006-02-01 19:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from ro at techfak dot uni-bielefeld dot de  2006-02-01 19:00 -------
Subject: Re:  [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with
native as: use of .word

I've now tried this patch on the 4.1 branch, and many testsuite failures
due to missing .word support in Sun as are gone:

        http://gcc.gnu.org/ml/gcc-testresults/2006-02/msg00038.html

So the patch looks good.

Thanks.
        Rainer


-- 


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2006-02-01 19:00 ` ro at techfak dot uni-bielefeld dot de
@ 2006-02-01 19:13 ` pinskia at gcc dot gnu dot org
  2006-02-02 14:58 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-01 19:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from pinskia at gcc dot gnu dot org  2006-02-01 19:12 -------
Testing the fix on x86_64-linux-gnu.  Thanks for confirming it fixes the
problems.

Sorry for breaking this in the first place.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |pinskia at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2006-02-01 19:13 ` pinskia at gcc dot gnu dot org
@ 2006-02-02 14:58 ` pinskia at gcc dot gnu dot org
  2006-02-06 18:39 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-02 14:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from pinskia at gcc dot gnu dot org  2006-02-02 14:58 -------
Patch posted:
http://gcc.gnu.org/ml/gcc-patches/2006-02/msg00130.html


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |http://gcc.gnu.org/ml/gcc-
                   |                            |patches/2006-
                   |                            |02/msg00130.html
           Keywords|                            |patch


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2006-02-02 14:58 ` pinskia at gcc dot gnu dot org
@ 2006-02-06 18:39 ` pinskia at gcc dot gnu dot org
  2006-02-06 18:49 ` pinskia at gcc dot gnu dot org
  2006-02-06 18:49 ` pinskia at gcc dot gnu dot org
  11 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-06 18:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from pinskia at gcc dot gnu dot org  2006-02-06 18:39 -------
Subject: Bug 23359

Author: pinskia
Date: Mon Feb  6 18:39:30 2006
New Revision: 110657

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=110657
Log:
2006-02-06  Andrew Pinski  <pinskia@physics.uc.edu>

        PR target/23359
        * config/i386/i386.md (trap): Use ASM_SHORT instead of .word.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/i386.md


-- 


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2006-02-06 18:49 ` pinskia at gcc dot gnu dot org
@ 2006-02-06 18:49 ` pinskia at gcc dot gnu dot org
  11 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-06 18:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from pinskia at gcc dot gnu dot org  2006-02-06 18:49 -------
Subject: Bug 23359

Author: pinskia
Date: Mon Feb  6 18:49:05 2006
New Revision: 110660

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=110660
Log:
2006-02-06  Andrew Pinski  <pinskia@physics.uc.edu>

        PR target/23359
        * config/i386/i386.md (trap): Use ASM_SHORT instead of .word.



Modified:
    branches/gcc-4_1-branch/gcc/ChangeLog
    branches/gcc-4_1-branch/gcc/config/i386/i386.md


-- 


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


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

* [Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word
       [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2006-02-06 18:39 ` pinskia at gcc dot gnu dot org
@ 2006-02-06 18:49 ` pinskia at gcc dot gnu dot org
  2006-02-06 18:49 ` pinskia at gcc dot gnu dot org
  11 siblings, 0 replies; 12+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-06 18:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from pinskia at gcc dot gnu dot org  2006-02-06 18:49 -------
Fixed, sorry for causing this in the first place.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2006-02-06 18:49 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-23359-81@http.gcc.gnu.org/bugzilla/>
2005-10-25 20:15 ` [Bug target/23359] [4.1 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word pinskia at gcc dot gnu dot org
2005-10-30 23:32 ` pinskia at gcc dot gnu dot org
2006-01-31 19:36 ` [Bug target/23359] [4.1/4.2 " ro at techfak dot uni-bielefeld dot de
2006-01-31 20:01 ` pinskia at gcc dot gnu dot org
2006-01-31 20:08 ` ro at techfak dot uni-bielefeld dot de
2006-01-31 21:56 ` ro at techfak dot uni-bielefeld dot de
2006-02-01 19:00 ` ro at techfak dot uni-bielefeld dot de
2006-02-01 19:13 ` pinskia at gcc dot gnu dot org
2006-02-02 14:58 ` pinskia at gcc dot gnu dot org
2006-02-06 18:39 ` pinskia at gcc dot gnu dot org
2006-02-06 18:49 ` pinskia at gcc dot gnu dot org
2006-02-06 18:49 ` pinskia at gcc dot gnu dot org

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