flang icon indicating copy to clipboard operation
flang copied to clipboard

Flang is a Fortran language front-end designed for integration with LLVM.

Results 159 flang issues
Sort by recently updated
recently updated
newest added

I see that only ppc64le is featured in CMakeLists. What is needed to implement ppc and ppc64 support?

Hi everyone, I successfully compiled flang using the release_90 branches for everything. However, when I use save-temps to generate my IR code, it appears to be LLVM7. How can I...

MODULE bar INTEGER :: i COMMON /X/i contains END MODULE bar USE bar INTEGER :: j,k COMMON /X/j i = 89 j = 1 k = i if (j /=...

Is `flang` packaged (like `clang` is) and available using a `apt-get/yum install flang` ? If not, is this planned ?

When compiling https://github.com/xianyi/OpenBLAS/ lapack with flang, warnings such as `F90-W-0547-OpenMP feature, DEPEND, not yet implemented in this version of the compiler` are emitted. This uses the latest binary from https://github.com/flang-compiler/flang/releases...

Hello, I am trying to use a static library written in Fortran and called from a program written in Fortran. - It works fine with a library written in C...

This is somewhat similar to issue #892 and discovered in the same [CP2k application](https://www.cp2k.org/). In this case, there is a subroutine with the same name as an interface procedure in...

The below code results in an error. If the value of the _ORDER_ argument is made non-allocatable then flang can compile this example correctly. ``` program test_reshape integer, dimension(4) ::...

Also filed as https://github.com/flang-compiler/f18/issues/1103 in F18. For the program given below (or a similar program where block with name lp replaced by do loops) flang does not detect the semantic...