19 lines · plain
1!RUN: rm -rf %t && mkdir -p %t2!RUN: %flang -c -fhermetic-module-files -DWHICH=1 -J%t %s && %flang -c -fhermetic-module-files -DWHICH=2 -J%t %s && %flang_fc1 -fdebug-unparse -J%t %s | FileCheck %s3 4#if WHICH == 15module modfile75a6 use iso_c_binding7end8#elif WHICH == 29module modfile75b10 use modfile75a11end12#else13program test14 use modfile75b15!CHECK: INTEGER(KIND=4_4) n16 integer(c_int) n17end18#endif19