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]

[Bug target/23359] [4.1/4.2 regression] Many Solaris 10/x86 testsuite failures with native as: use of .word



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


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