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

The functions in init_nomp.c was added in libompstub.so. The ompstub linking "-lompstub" is planed to be removed in the driver. However, it is unknown how the functions in init_nomp.c are...

Consider the testcase below ``` module mymod integer :: var1 = 11 integer :: var2 = 12 integer :: var3 = 13 end module mymod Program main call use_renamed() contains...

When an assumed length character function is not external, its symbol type will at first be set to `ST_IDENT` and the `AUTOBJ` field will be set to `1`. When a...

Flang doesn’t catch and handle the syntax error that the name of an entry point is used as an argument when a result clause is present, ultimately causing a segmentation...

TARGET_TRIPLE is deprecated and will be removed in a future LLVM release.

Our experiments proved that use of memset and memcpy instead of explicit while loops gives dramatic speedup (at least on AArch64 hosts) on formatted input.

This is a minimal set of code changes and additions to cmake rules to allow `flang` and `libpgmath` to build on macOS (aka Darwin). [Tested using clang6 to build on...

FLANG_VENDOR is defined in CMakeLists.txt and when set, adds -DFLANG_VENDOR=\"${FLANG_VENDOR} \" to compiler's command line (note space always added after vendor string!). As FLANG_VENDOR is nowhere used in the code,...