[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Driver / disable-ext-name-interop.f90
blob1ade84b996d043750cbd5e93bb6b34f897d8afd7
1 ! Test that we can disable the ExternalNameConversion pass in flang.
3 ! RUN: %flang_fc1 -S %s -o - 2>&1 | FileCheck %s --check-prefix=EXTNAMES
4 ! RUN: %flang_fc1 -S -mmlir -disable-external-name-interop %s -o - 2>&1 | FileCheck %s --check-prefix=INTNAMES
6 ! EXTNAMES: test_ext_names_
7 ! INTNAMES: _QPtest_ext_names
8 subroutine test_ext_names
9 end subroutine