- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
ifort 2022 (linux WSL) cannot compile the following code snippet.
Is the compiler error correct? Is line continuation disallowed in this case?
integer, allocatable :: A(:)
A = [integer &
:: 0]
end
1 Solución
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
Considering the Fortran standard document,
- Re: "Is the compiler error correct?" - no. Intel Fortran does not conform by failing to process the continued statement.
- Re: "Is line continuation disallowed in this case?" - no. Per the standard, the shown continuation is allowed.
Enlace copiado
7 Respuestas
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
Considering the Fortran standard document,
- Re: "Is the compiler error correct?" - no. Intel Fortran does not conform by failing to process the continued statement.
- Re: "Is line continuation disallowed in this case?" - no. Per the standard, the shown continuation is allowed.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
A temporary workaround until a compiler resolution might be to move the double colon separator to the previous line:
integer, allocatable :: A(:)
A = [ integer :: &
& 0 ]
end
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
Uh, oh! This one almost slipped by!
Thanks for reporting it. I filed the bug as CMPLRLLVM-43404.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
Fantastic. Thank you for your meticulous attention to bug reports and surely not the least, for the great compilers.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
We have a fix in the pipeline for this bug. The fix will appear in the 2024.2.0 ( Update 2). This is roughly due end of June or in July 2024.
- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Informe de contenido inapropiado
fantastic! Thank you.
Responder
Opciones de temas
- Suscribirse a un feed RSS
- Marcar tema como nuevo
- Marcar tema como leído
- Flotar este Tema para el usuario actual
- Favorito
- Suscribir
- Página de impresión sencilla