| View previous topic :: View next topic |
| Author |
Message |
mecej4
Joined: 31 Oct 2006 Posts: 1943 Location: USA
|
Posted: Sun Dec 21, 2025 3:53 am Post subject: |AMD backend failure |
|
|
A short source file which gets compiled OK in 32-bit mode gives an error (see title of post) with /64:
| Code: |
module absi
abstract interface
real function fun()
end function fun
end interface
contains
subroutine sub(f)
procedure(fun), pointer, intent(in) :: f
real :: a
a = f()
end subroutine sub
end module absi
|
The error message is "AMD backend failure:Failed to do memory-register emit for MOVSS at 7" |
|
| Back to top |
|
 |
PaulLaidler Site Admin
Joined: 21 Feb 2005 Posts: 8320 Location: Salford, UK
|
Posted: Mon Dec 22, 2025 8:36 am Post subject: |
|
|
mecej4
Many thanks for the feedback. I have made a note that this feature has not yet been implemented in FTN95. |
|
| Back to top |
|
 |
|