> Not that I can think of. Did you provide all of the secondary reload > stuff that you need? Probably not.
Probably not, I've been working at cleaning up what was done before. What exactly is needed to be done to define the secondary reload stuff ? > You'll do much better by rejecting these addresses earlier. > Probably by some combination of custom predicates that allow > only simple_memory_operand + registers + constants, or by > simply defining this kind of memory address illegal for DFmode. That is what I thought I had done: - DImode: accepts move from addresses to a register, immediates to a register, loads and stores using the R constraint - Other integer modes: accepts immediates to a register, loads and stores using the R constraint - DF/SF modes: as you saw before I have an expand_move that rejects anything not accepted, a check_move that makes sure everything is ok and the constraints that go with (my 'R' constraint). The instruction generated during greg should normally be refused. From what you've said, it seems that I did forget to define something so I will look at the secondary reload stuff ? - What exactly is needed there ? Thanks, Jc