[Bug gas/4572] division doesn't work on solaris/x86

2021-06-03 Thread amodra at gmail dot com
https://sourceware.org/bugzilla/show_bug.cgi?id=4572 Alan Modra changed: What|Removed |Added Resolution|--- |FIXED Status|NEW

[Bug gas/4572] division doesn't work on solaris/x86

2020-07-19 Thread cvs-commit at gcc dot gnu.org
https://sourceware.org/bugzilla/show_bug.cgi?id=4572 --- Comment #14 from cvs-commit at gcc dot gnu.org --- The master branch has been updated by Jan Beulich : https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=b3983e5f53caad175563f8c842f2ab2a1277c2bc commit b3983e5f53caad175563f8c842f2

[Bug gas/4572] division doesn't work on solaris/x86

2020-07-19 Thread cvs-commit at gcc dot gnu.org
https://sourceware.org/bugzilla/show_bug.cgi?id=4572 --- Comment #13 from cvs-commit at gcc dot gnu.org --- The master branch has been updated by Jan Beulich : https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=750e4bf70f2caab39dc5d0a1b2d26c9ca1fbd909 commit 750e4bf70f2caab39dc5d0a1b2d2

[Bug gas/4572] division doesn't work on solaris/x86

2009-08-04 Thread hjl dot tools at gmail dot com
--- Additional Comments From hjl dot tools at gmail dot com 2009-08-04 22:57 --- A patch is posted at http://sourceware.org/ml/binutils/2009-08/msg00048.html -- http://sourceware.org/bugzilla/show_bug.cgi?id=4572 --- You are receiving this mail because: --- You are on the C

[Bug gas/4572] division doesn't work on solaris/x86

2009-08-03 Thread whaley at cs dot utsa dot edu
--- Additional Comments From whaley at cs dot utsa dot edu 2009-08-03 16:39 --- (In reply to comment #10) > Gas is mainly for gcc. Assembler from Sun may not support the > new x86 instructions, like SSE4, AVX, You may have to use > gas with gcc. It isn't a good idea to make gas dif

[Bug gas/4572] division doesn't work on solaris/x86

2009-08-02 Thread hjl dot tools at gmail dot com
--- Additional Comments From hjl dot tools at gmail dot com 2009-08-03 01:19 --- Gas is mainly for gcc. Assembler from Sun may not support the new x86 instructions, like SSE4, AVX, You may have to use gas with gcc. It isn't a good idea to make gas different from the native assemble

[Bug gas/4572] division doesn't work on solaris/x86

2009-08-02 Thread whaley at cs dot utsa dot edu
--- Additional Comments From whaley at cs dot utsa dot edu 2009-08-02 16:42 --- I think defaulting to the gnu ('/' means division) behavior is the right thing as well. Note that the present behavior does *not* match solaris, since \/ does not allow division, as the solaris manual says i

[Bug gas/4572] division doesn't work on solaris/x86

2009-08-01 Thread viskovatoff at imap dot cc
--- Additional Comments From viskovatoff at imap dot cc 2009-08-01 17:13 --- Subject: Re: division doesn't work on solaris/x86 hjl dot tools at gmail dot com wrote: > --- Additional Comments From hjl dot tools at gmail dot com 2009-08-01 > 05:03 --- > I suggest you add a new

[Bug gas/4572] division doesn't work on solaris/x86

2009-07-31 Thread hjl dot tools at gmail dot com
--- Additional Comments From hjl dot tools at gmail dot com 2009-08-01 05:03 --- I suggest you add a new option to treate '/' as divide on Solaris. -- http://sourceware.org/bugzilla/show_bug.cgi?id=4572 --- You are receiving this mail because: --- You are on the CC list for

[Bug gas/4572] division doesn't work on solaris/x86

2009-07-31 Thread viskovatoff at imap dot cc
--- Additional Comments From viskovatoff at imap dot cc 2009-07-31 15:39 --- Created an attachment (id=4102) --> (http://sourceware.org/bugzilla/attachment.cgi?id=4102&action=view) Make GAS with a Solaris target treat '/' as it does for other *nixes >From the above comments it's fairly

[Bug gas/4572] division doesn't work on solaris/x86

2008-07-14 Thread Michael dot Abshoff at googlemail dot com
--- Additional Comments From Michael dot Abshoff at googlemail dot com 2008-07-14 17:52 --- (In reply to comment #4) > Subject: Re: division doesn't work on solaris/x86 > > Hi Clint, [My first journey into the world of binutils, so please be gentle :)] Hi Clint, Alan, Nick, > > You

[Bug gas/4572] division doesn't work on solaris/x86

2007-06-05 Thread nickc at redhat dot com
--- Additional Comments From nickc at redhat dot com 2007-06-05 12:15 --- Subject: Re: division doesn't work on solaris/x86 Hi Clint, > You are saying there is no way to do division in integer expressions with gas > on > solaris, even though it works on all other OSes? Isn't that le

Re: [Bug gas/4572] division doesn't work on solaris/x86

2007-06-05 Thread Nick Clifton
Hi Clint, You are saying there is no way to do division in integer expressions with gas on solaris, even though it works on all other OSes? Isn't that less than ideal? Actually Alan was saying that you should look at the assembler source file gas/app.c and see how you can modify it to interp

[Bug gas/4572] division doesn't work on solaris/x86

2007-05-31 Thread whaley at cs dot utsa dot edu
--- Additional Comments From whaley at cs dot utsa dot edu 2007-06-01 02:44 --- I can modify the assembly source only by removing functionality. In the original code, it is a cpp macro defined to an integer constant that is being passed in and being divided by known constant. Without b

[Bug gas/4572] division doesn't work on solaris/x86

2007-05-31 Thread amodra at bigpond dot net dot au
--- Additional Comments From amodra at bigpond dot net dot au 2007-06-01 01:52 --- You will need to modify app.c. -- http://sourceware.org/bugzilla/show_bug.cgi?id=4572 --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone w

[Bug gas/4572] division doesn't work on solaris/x86

2007-05-31 Thread whaley at cs dot utsa dot edu
--- Additional Comments From whaley at cs dot utsa dot edu 2007-05-31 18:01 --- OK, I have established that the problem is that '/' is a comment character under solaris/x86. The Sun assembly ref manual states that \/ should work to perform division in expressions, but this does not work