Browse thread
Re: 64 bit SPARC code generator updated for ocaml 3.08.3
- John Carr
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | John Carr <jfc@M...> |
| Subject: | Re: 64 bit SPARC code generator updated for ocaml 3.08.3 |
> I tried to compile Ocaml 3.08.3 with your patches but I get this error:
> sparc-sparc64.S:190: Error: Illegal operands
The GNU assembler does not support the form of the "wr" pseudo-op
used in sparc-sparc64.S. Change line 190 from
wr %g1, %fprs ! say we do not need the registers preserved
to
wr %g1, 0, %fprs ! say we do not need the registers preserved
My gcc uses the Solaris assembler so I did not notice this problem.