[flang-commits] [flang] [llvm] Flang improve fidelity of unformatted I/O endianness with FORT_CONVERT_UNIT (PR #223831)

David Parks via flang-commits flang-commits at lists.llvm.org
Fri Sep 18 10:11:44 PDT 2026


================
@@ -9,6 +9,7 @@
 #ifndef FLANG_RT_RUNTIME_ENVIRONMENT_H_
 #define FLANG_RT_RUNTIME_ENVIRONMENT_H_
 
+#include "../lib/runtime/array.h"
----------------
d-parks wrote:

@vzakhari Hi Slava,

I did move the `array.h` file to the new destination directory per your suggestion.  I used `git mv`:
```
djp at raspberrypi5:~/d-parks-llvm/llvm-project/flang-rt $ git mv lib/runtime/array.h include/flang-rt/runtime/array.h
djp at raspberrypi5:~/d-parks-llvm/llvm-project/flang-rt $ git status
On branch FORT_CONVERT_UNIT
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
	renamed:    lib/runtime/array.h -> include/flang-rt/runtime/array.h

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
	modified:   include/flang-rt/runtime/environment.h
	modified:   lib/runtime/environment.cpp
	modified:   lib/runtime/external-unit.cpp
	modified:   lib/runtime/io-api-server.cpp
```

But, `git log --follow include/flang-rt/runtime/array.h` is showing no file history:
```
djp at raspberrypi5:~/d-parks-llvm/llvm-project/flang-rt $ git log --follow include/flang-rt/runtime/array.h
djp at raspberrypi5:~/d-parks-llvm/llvm-project/flang-rt $ 
```

Guessing that I'm doing something wrong.

https://github.com/llvm/llvm-project/pull/223831


More information about the flang-commits mailing list