mecej4
Joined: 31 Oct 2006 Posts: 1936 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" |
|