[Chapel Merge] Fold LLVM-or-not into CHPL_TARGET_COMPILER

Branch: refs/heads/master
Revision: 09b1be1
Author: mppf
Log Message:

Merge pull request #17800 from mppf/clang-included-to-llvm

Fold LLVM-or-not into CHPL_TARGET_COMPILER

For #17795

Resolves #17606 #17598 #17584

This PR updates printchplenv, Makefiles, and related scripting to:

  • When CHPL_LLVM=system or CHPL_LLVM=bundled, CHPL_TARGET_COMPILER
    defaults to llvm (per #17795 )
  • have an idea of a prefix and suffix for the current compiler (e.g.
    CHPL_GCC_PREFIX=/usr/local/ and CHPL_GCC_SUFFIX=-10 would select
    /usr/local/bin/gcc-10 and /usr/local/bin/g++-10)
  • Along with that, adds CHPL_LLVM_PREFIX for selecting an installation
    of LLVM
  • adds a warning when doing an LLVM-enabled make of the compiler with
    a PrgEnv and when that PrgEnv is not PrgEnv-gnu. This is just to get
    people to use configurations that we test.
  • Replaces CHPL_TARGET_COMPILER=clang-included with
    CHPL_TARGET_COMPILER=llvm
  • Adds internal printchplenv variables CHPL_HOST_COMPILER_COMMAND_C
    CHPL_HOST_COMPILER_COMMAND_CPP CHPL_TARGET_COMPILER_COMMAND_C
    CHPL_TARGET_COMPILER_COMMAND_CPP and uses them in the Makefiles
    • This resolves a problem I was seeing with PrgEnv-cray where the
      compiler was trying to run clang instead of cc
  • Stops building the runtime twice for LLVM per #17795
  • removes CHPL_ORIG_TARGET_COMPILER (replacing it with the more
    focused CHPL_TARGET_COMPILER_PRGENV which just indicates which
    PrgEnv is loaded, if any)
  • Renames a few Makefile helpers in third-party/llvm to use the term
    "bundled"
  • Moves setting LLVM_CLANG_ARGUMENTS_FILE to only CHPL_LLVM=bundled
    configurations since it should only be relevant in that case
  • many supporting changes in the util/chplenv scripts

Future Work:

  • Update CHPL_LLVM_PREFIX and the commented-out CHPL_GCC_PREFIX /
    CHPL_GCC_SUFFIX / CHPL_CLANG_PREFIX / CHPL_CLANG_SUFFIX with
    whatever we decide in that discussion
  • Consider making CHPL_TARGET_COMPILER=clang + CHPL_LLVM=bundled an
    error in a PrgEnv environment since it doesn't work right now (we
    don't gather the appropriate extra flags for e.g. ugni dependencies)
  • [x] full local testing with CHPL_LLVM=system
  • [x] full local testing with CHPL_LLVM=none

Reviewed by @daviditen - thanks!

Modified Files:
A make/compiler/Makefile.llvm

A make/compiler/Makefile.llvm-clang
A test/compflags/bradc/longLineCppLines.skipif
A test/compflags/bradc/mungeUserIdents/testmunge-export.skipif
A test/compflags/bradc/mungeUserIdents/testmunge.skipif
A test/compflags/codegen/cppLines.skipif
A test/compflags/diten/savec.skipif
A test/compflags/shannon/cpplines/SKIPIF
A test/deprecated/dash-llvm.chpl
A test/deprecated/dash-llvm.compopts
A test/deprecated/dash-llvm.good
A test/deprecated/dash-llvm.skipif
A test/deprecated/dash-no-llvm.chpl
A test/deprecated/dash-no-llvm.compopts
A test/deprecated/dash-no-llvm.good
A test/extern/bradc/structs/externFloat4b.skipif
A test/extern/ferguson/externblock/extern-record-containing-anon-union.skipif
A test/extern/ferguson/externblock/struct-fn-ptr.skipif
A test/extern/ferguson/sizeof-extern-type/SKIPIF
A test/extern/unions/externAnonUnnamedUnionC.skipif
A test/functions/ferguson/lineno/no-extra-lineno.skipif
A test/interop/C/c-backend.skipif
A test/interop/C/c-backend/PRECOMP
A test/interop/C/c-backend/SKIPIF
A test/interop/C/c-backend/deinit/.gitignore
A test/interop/C/c-backend/deinit/callMyLib.cleanfiles
A test/interop/C/c-backend/deinit/callMyLib.good
A test/interop/C/c-backend/deinit/callMyLib.lastcompopts
A test/interop/C/c-backend/deinit/callMyLib.precomp
A test/interop/C/c-backend/deinit/callMyLib.test.c
A test/interop/C/c-backend/deinit/myLib.chpl
A test/interop/C/c-backend/deinit/myLib.notest
A test/interop/C/c-backend/errorMessage.skipif
A test/interop/C/c-backend/errorMessage/.gitignore
A test/interop/C/c-backend/errorMessage/CLEANFILES
A test/interop/C/c-backend/errorMessage/SKIPIF
A test/interop/C/c-backend/errorMessage/debugFlag/.gitignore
A test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.chpl
A test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.comm-none.good
A test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.compopts
A test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.good
A test/interop/C/c-backend/errorMessage/debugFlag/debugFlag.noexec
A test/interop/C/c-backend/errorMessage/defaultValueWarning.chpl
A test/interop/C/c-backend/errorMessage/defaultValueWarning.compopts
A test/interop/C/c-backend/errorMessage/defaultValueWarning.good
A test/interop/C/c-backend/errorMessage/defaultValueWarning.noexec
A test/interop/C/c-backend/errorMessage/hasMain.chpl
A test/interop/C/c-backend/errorMessage/hasMain.compopts
A test/interop/C/c-backend/errorMessage/hasMain.good
A test/interop/C/c-backend/errorMessage/hasMain.noexec
A test/interop/C/c-backend/errorMessage/multiMod/.gitignore
A test/interop/C/c-backend/errorMessage/multiMod/C.chpl
A test/interop/C/c-backend/errorMessage/multiMod/C.notest
A test/interop/C/c-backend/errorMessage/multiMod/SKIPIF
A test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.cleanfiles
A test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.good
A test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.lastcompopts
A test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.precomp
A test/interop/C/c-backend/errorMessage/multiMod/callMultiModLib.test.c
A test/interop/C/c-backend/errorMessage/multiMod/multipleModules.chpl
A test/interop/C/c-backend/errorMessage/multiMod/multipleModules.cleanfiles
A test/interop/C/c-backend/errorMessage/multiMod/multipleModules.compopts
A test/interop/C/c-backend/errorMessage/multiMod/multipleModules.error.good
A test/interop/C/c-backend/errorMessage/multiMod/multipleModules.good
A test/interop/C/c-backend/errorMessage/multiMod/multipleModules.noexec
A test/interop/C/c-backend/errorMessage/multiMod/sub_test
A test/interop/C/c-backend/errorMessage/use_defaultValueWarning.cleanfiles
A test/interop/C/c-backend/errorMessage/use_defaultValueWarning.good
A test/interop/C/c-backend/errorMessage/use_defaultValueWarning.lastcompopts
A test/interop/C/c-backend/errorMessage/use_defaultValueWarning.precomp
A test/interop/C/c-backend/errorMessage/use_defaultValueWarning.test.c
A test/interop/C/c-backend/exportArray.skipif
A test/interop/C/c-backend/exportArray/.gitignore
A test/interop/C/c-backend/exportArray/arrayArg_queriedDomain.chpl
A test/interop/C/c-backend/exportArray/arrayArg_queriedDomain.notest
A test/interop/C/c-backend/exportArray/arrayOpaquePointer.chpl
A test/interop/C/c-backend/exportArray/arrayOpaquePointer.notest
A test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.bad
A test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.chpl
A test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.compopts
A test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.future
A test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.good
A test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.noexec
A test/interop/C/c-backend/exportArray/arrayOpaquePointer_noArgDom.skipif
A test/interop/C/c-backend/exportArray/array_provider.c
A test/interop/C/c-backend/exportArray/array_provider.h
A test/interop/C/c-backend/exportArray/array_provider_real.c
A test/interop/C/c-backend/exportArray/array_provider_real.h
A test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.cleanfiles
A test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.good
A test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.lastcompopts
A test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.precomp
A test/interop/C/c-backend/exportArray/callArrayArg_queriedDomain.test.c
A test/interop/C/c-backend/exportArray/callArrayOpaquePointer.cleanfiles
A test/interop/C/c-backend/exportArray/callArrayOpaquePointer.good
A test/interop/C/c-backend/exportArray/callArrayOpaquePointer.lastcompopts
A test/interop/C/c-backend/exportArray/callArrayOpaquePointer.precomp
A test/interop/C/c-backend/exportArray/callArrayOpaquePointer.test.c
A test/interop/C/c-backend/exportArray/callCheckIfEmpty.cleanfiles
A test/interop/C/c-backend/exportArray/callCheckIfEmpty.good
A test/interop/C/c-backend/exportArray/callCheckIfEmpty.lastcompopts
A test/interop/C/c-backend/exportArray/callCheckIfEmpty.precomp
A test/interop/C/c-backend/exportArray/callCheckIfEmpty.test.c
A test/interop/C/c-backend/exportArray/callExported2Arg.cleanfiles
A test/interop/C/c-backend/exportArray/callExported2Arg.good
A test/interop/C/c-backend/exportArray/callExported2Arg.lastcompopts
A test/interop/C/c-backend/exportArray/callExported2Arg.precomp
A test/interop/C/c-backend/exportArray/callExported2Arg.test.c
A test/interop/C/c-backend/exportArray/callExported2ArgDiff.cleanfiles
A test/interop/C/c-backend/exportArray/callExported2ArgDiff.good
A test/interop/C/c-backend/exportArray/callExported2ArgDiff.lastcompopts
A test/interop/C/c-backend/exportArray/callExported2ArgDiff.precomp
A test/interop/C/c-backend/exportArray/callExported2ArgDiff.test.c
A test/interop/C/c-backend/exportArray/callExported2Arrays.cleanfiles
A test/interop/C/c-backend/exportArray/callExported2Arrays.good
A test/interop/C/c-backend/exportArray/callExported2Arrays.lastcompopts
A test/interop/C/c-backend/exportArray/callExported2Arrays.precomp
A test/interop/C/c-backend/exportArray/callExported2Arrays.test.c
A test/interop/C/c-backend/exportArray/callExportedArrayFunc.cleanfiles
A test/interop/C/c-backend/exportArray/callExportedArrayFunc.good
A test/interop/C/c-backend/exportArray/callExportedArrayFunc.lastcompopts
A test/interop/C/c-backend/exportArray/callExportedArrayFunc.precomp
A test/interop/C/c-backend/exportArray/callExportedArrayFunc.test.c
A test/interop/C/c-backend/exportArray/callExportedExplicit.cleanfiles
A test/interop/C/c-backend/exportArray/callExportedExplicit.good
A test/interop/C/c-backend/exportArray/callExportedExplicit.lastcompopts
A test/interop/C/c-backend/exportArray/callExportedExplicit.precomp
A test/interop/C/c-backend/exportArray/callExportedExplicit.test.c
A test/interop/C/c-backend/exportArray/callExportedRealArr.cleanfiles
A test/interop/C/c-backend/exportArray/callExportedRealArr.good
A test/interop/C/c-backend/exportArray/callExportedRealArr.lastcompopts
A test/interop/C/c-backend/exportArray/callExportedRealArr.precomp
A test/interop/C/c-backend/exportArray/callExportedRealArr.test.c
A test/interop/C/c-backend/exportArray/callExportedWithExternType.cleanfiles
A test/interop/C/c-backend/exportArray/callExportedWithExternType.good
A test/interop/C/c-backend/exportArray/callExportedWithExternType.lastcompopts
A test/interop/C/c-backend/exportArray/callExportedWithExternType.precomp
A test/interop/C/c-backend/exportArray/callExportedWithExternType.test.c
A test/interop/C/c-backend/exportArray/callExportedWithPtr.cleanfiles
A test/interop/C/c-backend/exportArray/callExportedWithPtr.good
A test/interop/C/c-backend/exportArray/callExportedWithPtr.lastcompopts
A test/interop/C/c-backend/exportArray/callExportedWithPtr.precomp
A test/interop/C/c-backend/exportArray/callExportedWithPtr.test.c
A test/interop/C/c-backend/exportArray/callFuncReturnsArray.cleanfiles
A test/interop/C/c-backend/exportArray/callFuncReturnsArray.good
A test/interop/C/c-backend/exportArray/callFuncReturnsArray.lastcompopts
A test/interop/C/c-backend/exportArray/callFuncReturnsArray.precomp
A test/interop/C/c-backend/exportArray/callFuncReturnsArray.test.c
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.cleanfiles
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.good
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.lastcompopts
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.precomp
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_global.test.c
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.cleanfiles
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.good
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.lastcompopts
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.precomp
A test/interop/C/c-backend/exportArray/callWrapArrayAsOpaque_moreComplex.test.c
A test/interop/C/c-backend/exportArray/checkIfEmpty.chpl
A test/interop/C/c-backend/exportArray/checkIfEmpty.notest
A test/interop/C/c-backend/exportArray/exportArrNoEltType.chpl
A test/interop/C/c-backend/exportArray/exportArrNoEltType.compopts
A test/interop/C/c-backend/exportArray/exportArrNoEltType.good
A test/interop/C/c-backend/exportArray/exportArrNoEltType.noexec
A test/interop/C/c-backend/exportArray/exportFuncWith1Arr1Not.chpl
A test/interop/C/c-backend/exportArray/exportFuncWith1Arr1Not.notest
A test/interop/C/c-backend/exportArray/exportFuncWith1Not1Arr.chpl
A test/interop/C/c-backend/exportArray/exportFuncWith1Not1Arr.notest
A test/interop/C/c-backend/exportArray/exportFuncWith2Arrays.chpl
A test/interop/C/c-backend/exportArray/exportFuncWith2Arrays.notest
A test/interop/C/c-backend/exportArray/exportFuncWithArrayArg.chpl
A test/interop/C/c-backend/exportArray/exportFuncWithArrayArg.notest
A test/interop/C/c-backend/exportArray/exportFuncWithExplicitVoidRet.chpl
A test/interop/C/c-backend/exportArray/exportFuncWithExplicitVoidRet.notest
A test/interop/C/c-backend/exportArray/exportFuncWithExternType.chpl
A test/interop/C/c-backend/exportArray/exportFuncWithExternType.notest
A test/interop/C/c-backend/exportArray/exportFuncWithPtr.chpl
A test/interop/C/c-backend/exportArray/exportFuncWithPtr.notest
A test/interop/C/c-backend/exportArray/exportFuncWithRealArr.chpl
A test/interop/C/c-backend/exportArray/exportFuncWithRealArr.notest
A test/interop/C/c-backend/exportArray/returnExternArray.chpl
A test/interop/C/c-backend/exportArray/returnExternArray.notest
A test/interop/C/c-backend/exportArray/returningArr/.gitignore
A test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.good
A test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.precomp
A test/interop/C/c-backend/exportArray/returningArr/callExportedArrArgReturnInt.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArray.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayOfReals.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArg2.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray.test.c
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.cleanfiles
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.good
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.lastcompopts
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.precomp
A test/interop/C/c-backend/exportArray/returningArr/callFuncReturnsBadArray2.test.c
A test/interop/C/c-backend/exportArray/returningArr/exportArrArgReturnInt.chpl
A test/interop/C/c-backend/exportArray/returningArr/exportArrArgReturnInt.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArray.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArray.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArrayGenericDecl.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArrayGenericDecl.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArrayGenericDecl2.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArrayGenericDecl2.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArrayOfReals.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArrayOfReals.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArg.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArg.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArg2.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArg2.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg2.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg2.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg3.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg3.notest
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg4.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnArrayTakesArrayArg4.notest
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank.good
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank.noexec
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank2.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank2.good
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-multiRank2.noexec
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided.good
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided.noexec
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided2.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided2.good
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray-strided2.noexec
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray.notest
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray2.chpl
A test/interop/C/c-backend/exportArray/returningArr/returnBadArray2.notest
A test/interop/C/c-backend/exportArray/wrapArrayAsOpaque.chpl
A test/interop/C/c-backend/exportArray/wrapArrayAsOpaque.good
A test/interop/C/c-backend/exportArray/wrapArrayAsOpaque_global.chpl
A test/interop/C/c-backend/exportArray/wrapArrayAsOpaque_global.notest
A test/interop/C/c-backend/exportArray/wrapArrayAsOpaque_moreComplex.chpl
A test/interop/C/c-backend/exportArray/wrapArrayAsOpaque_moreComplex.notest
A test/interop/C/c-backend/exportArray/wrapArrayOfArrayAsOpaque.chpl
A test/interop/C/c-backend/exportArray/wrapArrayOfArrayAsOpaque.good
A test/interop/C/c-backend/exportArray/wrapExternArray-copy.chpl
A test/interop/C/c-backend/exportArray/wrapExternArray-copy.compopts
A test/interop/C/c-backend/exportArray/wrapExternArray-copy.good
A test/interop/C/c-backend/exportArray/wrapExternArray-real.chpl
A test/interop/C/c-backend/exportArray/wrapExternArray-real.compopts
A test/interop/C/c-backend/exportArray/wrapExternArray-real.good
A test/interop/C/c-backend/exportArray/wrapExternArray.chpl
A test/interop/C/c-backend/exportArray/wrapExternArray.compopts
A test/interop/C/c-backend/exportArray/wrapExternArray.good
A test/interop/C/c-backend/exportBytes/.gitignore
A test/interop/C/c-backend/exportBytes/CLEANFILES
A test/interop/C/c-backend/exportBytes/PRECOMP
A test/interop/C/c-backend/exportBytes/SKIPIF
A test/interop/C/c-backend/exportBytes/TestLibrary.chpl
A test/interop/C/c-backend/exportBytes/TestLibrary.notest
A test/interop/C/c-backend/exportBytes/noArgsRetBytes.good
A test/interop/C/c-backend/exportBytes/noArgsRetBytes.lastcompopts
A test/interop/C/c-backend/exportBytes/noArgsRetBytes.test.c
A test/interop/C/c-backend/exportString/.gitignore
A test/interop/C/c-backend/exportString/CLEANFILES
A test/interop/C/c-backend/exportString/PRECOMP
A test/interop/C/c-backend/exportString/SKIPIF
A test/interop/C/c-backend/exportString/TestLibrary.chpl
A test/interop/C/c-backend/exportString/TestLibrary.notest
A test/interop/C/c-backend/exportString/badFormalIntent.chpl
A test/interop/C/c-backend/exportString/badFormalIntent.compopts
A test/interop/C/c-backend/exportString/badFormalIntent.good
A test/interop/C/c-backend/exportString/badReturnIntent.chpl
A test/interop/C/c-backend/exportString/badReturnIntent.compopts
A test/interop/C/c-backend/exportString/badReturnIntent.good
A test/interop/C/c-backend/exportString/noArgsRetString.good
A test/interop/C/c-backend/exportString/noArgsRetString.lastcompopts
A test/interop/C/c-backend/exportString/noArgsRetString.test.c
A test/interop/C/c-backend/exportString/nolib/exportStringRoutineNoLib.chpl
A test/interop/C/c-backend/exportString/nolib/exportStringRoutineNoLib.good
A test/interop/C/c-backend/exportString/stringArgsRetString.good
A test/interop/C/c-backend/exportString/stringArgsRetString.lastcompopts
A test/interop/C/c-backend/exportString/stringArgsRetString.test.c
A test/interop/C/c-backend/exportString/stringArgsRetVoid.good
A test/interop/C/c-backend/exportString/stringArgsRetVoid.lastcompopts
A test/interop/C/c-backend/exportString/stringArgsRetVoid.test.c
A test/interop/C/c-backend/externRecords/.gitignore
A test/interop/C/c-backend/externRecords/defineRecord.h
A test/interop/C/c-backend/externRecords/receiveExternRecord.chpl
A test/interop/C/c-backend/externRecords/receiveExternRecord.notest
A test/interop/C/c-backend/externRecords/sendExternRecord.cleanfiles
A test/interop/C/c-backend/externRecords/sendExternRecord.good
A test/interop/C/c-backend/externRecords/sendExternRecord.lastcompopts
A test/interop/C/c-backend/externRecords/sendExternRecord.precomp
A test/interop/C/c-backend/externRecords/sendExternRecord.test.c
A test/interop/C/c-backend/globals/.gitignore
A test/interop/C/c-backend/globals/CLEANFILES
A test/interop/C/c-backend/globals/PRECOMP
A test/interop/C/c-backend/globals/reliesOnGlobal.chpl
A test/interop/C/c-backend/globals/reliesOnGlobal.notest
A test/interop/C/c-backend/globals/use_reliesOnGlobal-library-init.good
A test/interop/C/c-backend/globals/use_reliesOnGlobal-library-init.lastcompopts
A test/interop/C/c-backend/globals/use_reliesOnGlobal-library-init.test.c
A test/interop/C/c-backend/globals/use_reliesOnGlobal.good
A test/interop/C/c-backend/globals/use_reliesOnGlobal.lastcompopts
A test/interop/C/c-backend/globals/use_reliesOnGlobal.test.c
A test/interop/C/c-backend/headerName/.gitignore
A test/interop/C/c-backend/headerName/COMPOPTS
A test/interop/C/c-backend/headerName/SKIPIF
A test/interop/C/c-backend/headerName/checkHeaderAndLibSet.chpl
A test/interop/C/c-backend/headerName/checkHeaderAndLibSet.cleanfiles
A test/interop/C/c-backend/headerName/checkHeaderAndLibSet.compopts
A test/interop/C/c-backend/headerName/checkHeaderAndLibSet.good
A test/interop/C/c-backend/headerName/checkHeaderAndLibSet.noexec
A test/interop/C/c-backend/headerName/checkHeaderAndLibSet.prediff
A test/interop/C/c-backend/headerName/checkHeaderSet.chpl
A test/interop/C/c-backend/headerName/checkHeaderSet.cleanfiles
A test/interop/C/c-backend/headerName/checkHeaderSet.compopts
A test/interop/C/c-backend/headerName/checkHeaderSet.good
A test/interop/C/c-backend/headerName/checkHeaderSet.noexec
A test/interop/C/c-backend/headerName/checkHeaderSet.prediff
A test/interop/C/c-backend/headerName/checkLibNotHeaderSet.chpl
A test/interop/C/c-backend/headerName/checkLibNotHeaderSet.cleanfiles
A test/interop/C/c-backend/headerName/checkLibNotHeaderSet.compopts
A test/interop/C/c-backend/headerName/checkLibNotHeaderSet.good
A test/interop/C/c-backend/headerName/checkLibNotHeaderSet.noexec
A test/interop/C/c-backend/headerName/checkLibNotHeaderSet.prediff
A test/interop/C/c-backend/headerName/sub_test
A test/interop/C/c-backend/hyphenated-name.chpl
A test/interop/C/c-backend/hyphenated-name.cleanfiles
A test/interop/C/c-backend/hyphenated-name.compopts
A test/interop/C/c-backend/hyphenated-name.future
A test/interop/C/c-backend/hyphenated-name.good
A test/interop/C/c-backend/hyphenated-name.noexec
A test/interop/C/c-backend/importConditionalCPtr.chpl
A test/interop/C/c-backend/importConditionalCPtr.good
A test/interop/C/c-backend/makefiles/.gitignore
A test/interop/C/c-backend/makefiles/Makefile
A test/interop/C/c-backend/makefiles/SKIPIF
A test/interop/C/c-backend/makefiles/bar.h
A test/interop/C/c-backend/makefiles/checkCommandLineLib.c
A test/interop/C/c-backend/makefiles/checkEnvOverrides.chpl
A test/interop/C/c-backend/makefiles/checkEnvOverrides.cleanfiles
A test/interop/C/c-backend/makefiles/checkEnvOverrides.compenv
A test/interop/C/c-backend/makefiles/checkEnvOverrides.compopts
A test/interop/C/c-backend/makefiles/checkEnvOverrides.good
A test/interop/C/c-backend/makefiles/checkEnvOverrides.noexec
A test/interop/C/c-backend/makefiles/checkEnvOverrides.prediff
A test/interop/C/c-backend/makefiles/checkEnvOverrides.skipif
A test/interop/C/c-backend/makefiles/checkRequire.c
A test/interop/C/c-backend/makefiles/checkRequire2.c
A test/interop/C/c-backend/makefiles/commandLineLib.chpl
A test/interop/C/c-backend/makefiles/commandLineLib.cleanfiles
A test/interop/C/c-backend/makefiles/commandLineLib.compenv
A test/interop/C/c-backend/makefiles/commandLineLib.compopts
A test/interop/C/c-backend/makefiles/commandLineLib.good
A test/interop/C/c-backend/makefiles/commandLineLib.noexec
A test/interop/C/c-backend/makefiles/commandLineLib.precomp
A test/interop/C/c-backend/makefiles/commandLineLib.prediff
A test/interop/C/c-backend/makefiles/commandLineLib.skipif
A test/interop/C/c-backend/makefiles/dynamicLinking/.gitignore
A test/interop/C/c-backend/makefiles/dynamicLinking/CLEANFILES
A test/interop/C/c-backend/makefiles/dynamicLinking/EXECENV
A test/interop/C/c-backend/makefiles/dynamicLinking/FooLibrary.chpl
A test/interop/C/c-backend/makefiles/dynamicLinking/FooLibrary.notest
A test/interop/C/c-backend/makefiles/dynamicLinking/PRECOMP
A test/interop/C/c-backend/makefiles/dynamicLinking/SKIPIF
A test/interop/C/c-backend/makefiles/dynamicLinking/useSharedLibFromC.compopts
A test/interop/C/c-backend/makefiles/dynamicLinking/useSharedLibFromC.good
A test/interop/C/c-backend/makefiles/dynamicLinking/useSharedLibFromC.test.c
A test/interop/C/c-backend/makefiles/envOverrides.c
A test/interop/C/c-backend/makefiles/foo.c
A test/interop/C/c-backend/makefiles/foo.h
A test/interop/C/c-backend/makefiles/getMakefile.chpl
A test/interop/C/c-backend/makefiles/getMakefile.cleanfiles
A test/interop/C/c-backend/makefiles/getMakefile.compopts
A test/interop/C/c-backend/makefiles/getMakefile.good
A test/interop/C/c-backend/makefiles/getMakefile.noexec
A test/interop/C/c-backend/makefiles/getMakefile.prediff
A test/interop/C/c-backend/makefiles/mytest.c
A test/interop/C/c-backend/makefiles/renamedLib.chpl
A test/interop/C/c-backend/makefiles/renamedLib.cleanfiles
A test/interop/C/c-backend/makefiles/renamedLib.compopts
A test/interop/C/c-backend/makefiles/renamedLib.good
A test/interop/C/c-backend/makefiles/renamedLib.noexec
A test/interop/C/c-backend/makefiles/renamedLib.prediff
A test/interop/C/c-backend/makefiles/renamedTest.c
A test/interop/C/c-backend/makefiles/requireHeader.chpl
A test/interop/C/c-backend/makefiles/requireHeader.cleanfiles
A test/interop/C/c-backend/makefiles/requireHeader.compenv
A test/interop/C/c-backend/makefiles/requireHeader.compopts
A test/interop/C/c-backend/makefiles/requireHeader.good
A test/interop/C/c-backend/makefiles/requireHeader.noexec
A test/interop/C/c-backend/makefiles/requireHeader.prediff
A test/interop/C/c-backend/makefiles/requireStmt.chpl
A test/interop/C/c-backend/makefiles/requireStmt.cleanfiles
A test/interop/C/c-backend/makefiles/requireStmt.compenv
A test/interop/C/c-backend/makefiles/requireStmt.compopts
A test/interop/C/c-backend/makefiles/requireStmt.good
A test/interop/C/c-backend/makefiles/requireStmt.noexec
A test/interop/C/c-backend/makefiles/requireStmt.precomp
A test/interop/C/c-backend/makefiles/requireStmt.prediff
A test/interop/C/c-backend/makefiles/requireStmt.skipif
A test/interop/C/c-backend/makefiles/sub_test
A test/interop/C/c-backend/noLibFlag/.gitignore
A test/interop/C/c-backend/noLibFlag/CLEANFILES
A test/interop/C/c-backend/noLibFlag/Makefile
A test/interop/C/c-backend/noLibFlag/callDirSet.cleanfiles
A test/interop/C/c-backend/noLibFlag/callDirSet.good
A test/interop/C/c-backend/noLibFlag/callDirSet.lastcompopts
A test/interop/C/c-backend/noLibFlag/callDirSet.precomp
A test/interop/C/c-backend/noLibFlag/callDirSet.test.c
A test/interop/C/c-backend/noLibFlag/checkHeaderSet.chpl
A test/interop/C/c-backend/noLibFlag/checkHeaderSet.cleanfiles
A test/interop/C/c-backend/noLibFlag/checkHeaderSet.compopts
A test/interop/C/c-backend/noLibFlag/checkHeaderSet.good
A test/interop/C/c-backend/noLibFlag/checkHeaderSet.noexec
A test/interop/C/c-backend/noLibFlag/checkHeaderSet.prediff
A test/interop/C/c-backend/noLibFlag/checkHeaderSet.skipif
A test/interop/C/c-backend/noLibFlag/getMakefile.chpl
A test/interop/C/c-backend/noLibFlag/getMakefile.cleanfiles
A test/interop/C/c-backend/noLibFlag/getMakefile.compopts
A test/interop/C/c-backend/noLibFlag/getMakefile.good
A test/interop/C/c-backend/noLibFlag/getMakefile.noexec
A test/interop/C/c-backend/noLibFlag/getMakefile.prediff
A test/interop/C/c-backend/noLibFlag/getMakefile.skipif
A test/interop/C/c-backend/noLibFlag/mytest.c
A test/interop/C/c-backend/noLibFlag/setDir.chpl
A test/interop/C/c-backend/noLibFlag/setDir.notest
A test/interop/C/c-backend/noLibFlag/sub_test
A test/interop/C/c-backend/testing.chpl
A test/interop/C/c-backend/testing.notest
A test/interop/C/c-backend/use_testing.cleanfiles
A test/interop/C/c-backend/use_testing.good
A test/interop/C/c-backend/use_testing.lastcompopts
A test/interop/C/c-backend/use_testing.test.c
A test/interop/fortran/ChapelCallFortran/SKIPIF
A test/library/standard/Endian/endianTest.skipif
A test/llvm.skipif
A test/llvm/ccflags/llvmBackendCCflagsSplitBySpaces.chpl
A test/llvm/ccflags/llvmBackendCCflagsSplitBySpaces.compopts
A test/llvm/ccflags/llvmBackendCCflagsSplitBySpaces.good
A test/llvm/ccflags/llvmBackendCCflagsSplitBySpaces.skipif
A test/llvm/llvmPrintIr/multi/PREDIFF
A test/llvm/llvmPrintIr/multi/llvmPrintIrMulti.chpl
A test/llvm/llvmPrintIr/multi/llvmPrintIrMulti.compopts
A test/llvm/llvmPrintIr/multi/llvmPrintIrMulti.good
A test/llvm/llvmPrintIr/multi/llvmPrintIrMulti.skipif
A test/llvm/llvmPrintIr/stages/PREDIFF
A test/llvm/llvmPrintIr/stages/llvmPrintIrBasic.chpl
A test/llvm/llvmPrintIr/stages/llvmPrintIrBasic.compopts
A test/llvm/llvmPrintIr/stages/llvmPrintIrBasic.good
A test/llvm/llvmPrintIr/stages/llvmPrintIrBasic.skipif
A test/llvm/llvmPrintIr/stages/llvmPrintIrFull.chpl
A test/llvm/llvmPrintIr/stages/llvmPrintIrFull.compopts
A test/llvm/llvmPrintIr/stages/llvmPrintIrFull.good
A test/llvm/llvmPrintIr/stages/llvmPrintIrFull.skipif
A test/llvm/llvmPrintIr/stages/llvmPrintIrNone.chpl
A test/llvm/llvmPrintIr/stages/llvmPrintIrNone.compopts
A test/llvm/llvmPrintIr/stages/llvmPrintIrNone.good
A test/llvm/llvmPrintIr/stages/llvmPrintIrNone.skipif
A test/parsing/ferguson/no-codegen-formal.skipif
A test/performance/bradc/refArgIsWide.skipif
A test/users/ferguson/c_line_error/SKIPIF
A third-party/llvm/Makefile.include-llvm-clang
A third-party/llvm/Makefile.share-bundled
R make/compiler/Makefile.clang-included
R test/chplenv/printchplenv/printchplenv.compopts
R test/compflags/coodie/llvmBackendCCflagsSplitBySpaces.chpl
R test/compflags/coodie/llvmBackendCCflagsSplitBySpaces.compopts
R test/compflags/coodie/llvmBackendCCflagsSplitBySpaces.good
R test/compflags/coodie/llvmBackendCCflagsSplitBySpaces.skipif
R test/compflags/coodie/llvmPrintIr/multi/PREDIFF
R test/compflags/coodie/llvmPrintIr/multi/llvmPrintIrMulti.chpl
R test/compflags/coodie/llvmPrintIr/multi/llvmPrintIrMulti.compopts
R test/compflags/coodie/llvmPrintIr/multi/llvmPrintIrMulti.good
R test/compflags/coodie/llvmPrintIr/multi/llvmPrintIrMulti.skipif
R test/compflags/coodie/llvmPrintIr/stages/PREDIFF
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrBasic.chpl
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrBasic.compopts
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrBasic.good
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrBasic.skipif
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrFull.chpl
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrFull.compopts
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrFull.good
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrFull.skipif
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrNone.chpl
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrNone.compopts
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrNone.good
R test/compflags/coodie/llvmPrintIr/stages/llvmPrintIrNone.skipif
R test/execflags/sungeun/about.compopts
R test/extern/ferguson/externblock/extern-record-containing-anon-union.compopts
R test/extern/ferguson/externblock/struct-fn-ptr.compopts
R test/interop/C/PRECOMP
R test/interop/C/SKIPIF
R test/interop/C/deinit/.gitignore
R test/interop/C/deinit/callMyLib.cleanfiles
R test/interop/C/deinit/callMyLib.good
R test/interop/C/deinit/callMyLib.lastcompopts
R test/interop/C/deinit/callMyLib.precomp
R test/interop/C/deinit/callMyLib.test.c
R test/interop/C/deinit/myLib.chpl
R test/interop/C/deinit/myLib.notest
R test/interop/C/errorMessage.skipif
R test/interop/C/errorMessage/.gitignore
R test/interop/C/errorMessage/CLEANFILES
R test/interop/C/errorMessage/SKIPIF
R test/interop/C/errorMessage/debugFlag/.gitignore
R test/interop/C/errorMessage/debugFlag/debugFlag.chpl
R test/interop/C/errorMessage/debugFlag/debugFlag.comm-none.good
R test/interop/C/errorMessage/debugFlag/debugFlag.compopts
R test/interop/C/errorMessage/debugFlag/debugFlag.good
R test/interop/C/errorMessage/debugFlag/debugFlag.noexec
R test/interop/C/errorMessage/defaultValueWarning.chpl
R test/interop/C/errorMessage/defaultValueWarning.compopts
R test/interop/C/errorMessage/defaultValueWarning.good
R test/interop/C/errorMessage/defaultValueWarning.noexec
R test/interop/C/errorMessage/hasMain.chpl
R test/interop/C/errorMessage/hasMain.compopts
R test/interop/C/errorMessage/hasMain.good
R test/interop/C/errorMessage/hasMain.noexec
R test/interop/C/errorMessage/multiMod/.gitignore
R test/interop/C/errorMessage/multiMod/C.chpl
R test/interop/C/errorMessage/multiMod/C.notest
R test/interop/C/errorMessage/multiMod/SKIPIF
R test/interop/C/errorMessage/multiMod/callMultiModLib.cleanfiles
R test/interop/C/errorMessage/multiMod/callMultiModLib.good
R test/interop/C/errorMessage/multiMod/callMultiModLib.lastcompopts
R test/interop/C/errorMessage/multiMod/callMultiModLib.precomp
R test/interop/C/errorMessage/multiMod/callMultiModLib.test.c
R test/interop/C/errorMessage/multiMod/multipleModules.chpl
R test/interop/C/errorMessage/multiMod/multipleModules.cleanfiles
R test/interop/C/errorMessage/multiMod/multipleModules.compopts
R test/interop/C/errorMessage/multiMod/multipleModules.error.good
R test/interop/C/errorMessage/multiMod/multipleModules.good
R test/interop/C/errorMessage/multiMod/multipleModules.noexec
R test/interop/C/errorMessage/multiMod/sub_test
R test/interop/C/errorMessage/use_defaultValueWarning.cleanfiles
R test/interop/C/errorMessage/use_defaultValueWarning.good
R test/interop/C/errorMessage/use_defaultValueWarning.lastcompopts
R test/interop/C/errorMessage/use_defaultValueWarning.precomp
R test/interop/C/errorMessage/use_defaultValueWarning.test.c
R test/interop/C/exportArray.skipif
R test/interop/C/exportArray/.gitignore
R test/interop/C/exportArray/arrayArg_queriedDomain.chpl
R test/interop/C/exportArray/arrayArg_queriedDomain.notest
R test/interop/C/exportArray/arrayOpaquePointer.chpl
R test/interop/C/exportArray/arrayOpaquePointer.notest
R test/interop/C/exportArray/arrayOpaquePointer_noArgDom.bad
R test/interop/C/exportArray/arrayOpaquePointer_noArgDom.chpl
R test/interop/C/exportArray/arrayOpaquePointer_noArgDom.compopts
R test/interop/C/exportArray/arrayOpaquePointer_noArgDom.future
R test/interop/C/exportArray/arrayOpaquePointer_noArgDom.good
R test/interop/C/exportArray/arrayOpaquePointer_noArgDom.noexec
R test/interop/C/exportArray/arrayOpaquePointer_noArgDom.skipif
R test/interop/C/exportArray/array_provider.c
R test/interop/C/exportArray/array_provider.h
R test/interop/C/exportArray/array_provider_real.c
R test/interop/C/exportArray/array_provider_real.h
R test/interop/C/exportArray/callArrayArg_queriedDomain.cleanfiles
R test/interop/C/exportArray/callArrayArg_queriedDomain.good
R test/interop/C/exportArray/callArrayArg_queriedDomain.lastcompopts
R test/interop/C/exportArray/callArrayArg_queriedDomain.precomp
R test/interop/C/exportArray/callArrayArg_queriedDomain.test.c
R test/interop/C/exportArray/callArrayOpaquePointer.cleanfiles
R test/interop/C/exportArray/callArrayOpaquePointer.good
R test/interop/C/exportArray/callArrayOpaquePointer.lastcompopts
R test/interop/C/exportArray/callArrayOpaquePointer.precomp
R test/interop/C/exportArray/callArrayOpaquePointer.test.c
R test/interop/C/exportArray/callCheckIfEmpty.cleanfiles
R test/interop/C/exportArray/callCheckIfEmpty.good
R test/interop/C/exportArray/callCheckIfEmpty.lastcompopts
R test/interop/C/exportArray/callCheckIfEmpty.precomp
R test/interop/C/exportArray/callCheckIfEmpty.test.c
R test/interop/C/exportArray/callExported2Arg.cleanfiles
R test/interop/C/exportArray/callExported2Arg.good
R test/interop/C/exportArray/callExported2Arg.lastcompopts
R test/interop/C/exportArray/callExported2Arg.precomp
R test/interop/C/exportArray/callExported2Arg.test.c
R test/interop/C/exportArray/callExported2ArgDiff.cleanfiles
R test/interop/C/exportArray/callExported2ArgDiff.good
R test/interop/C/exportArray/callExported2ArgDiff.lastcompopts
R test/interop/C/exportArray/callExported2ArgDiff.precomp
R test/interop/C/exportArray/callExported2ArgDiff.test.c
R test/interop/C/exportArray/callExported2Arrays.cleanfiles
R test/interop/C/exportArray/callExported2Arrays.good
R test/interop/C/exportArray/callExported2Arrays.lastcompopts
R test/interop/C/exportArray/callExported2Arrays.precomp
R test/interop/C/exportArray/callExported2Arrays.test.c
R test/interop/C/exportArray/callExportedArrayFunc.cleanfiles
R test/interop/C/exportArray/callExportedArrayFunc.good
R test/interop/C/exportArray/callExportedArrayFunc.lastcompopts
R test/interop/C/exportArray/callExportedArrayFunc.precomp
R test/interop/C/exportArray/callExportedArrayFunc.test.c
R test/interop/C/exportArray/callExportedExplicit.cleanfiles
R test/interop/C/exportArray/callExportedExplicit.good
R test/interop/C/exportArray/callExportedExplicit.lastcompopts
R test/interop/C/exportArray/callExportedExplicit.precomp
R test/interop/C/exportArray/callExportedExplicit.test.c
R test/interop/C/exportArray/callExportedRealArr.cleanfiles
R test/interop/C/exportArray/callExportedRealArr.good
R test/interop/C/exportArray/callExportedRealArr.lastcompopts
R test/interop/C/exportArray/callExportedRealArr.precomp
R test/interop/C/exportArray/callExportedRealArr.test.c
R test/interop/C/exportArray/callExportedWithExternType.cleanfiles
R test/interop/C/exportArray/callExportedWithExternType.good
R test/interop/C/exportArray/callExportedWithExternType.lastcompopts
R test/interop/C/exportArray/callExportedWithExternType.precomp
R test/interop/C/exportArray/callExportedWithExternType.test.c
R test/interop/C/exportArray/callExportedWithPtr.cleanfiles
R test/interop/C/exportArray/callExportedWithPtr.good
R test/interop/C/exportArray/callExportedWithPtr.lastcompopts
R test/interop/C/exportArray/callExportedWithPtr.precomp
R test/interop/C/exportArray/callExportedWithPtr.test.c
R test/interop/C/exportArray/callFuncReturnsArray.cleanfiles
R test/interop/C/exportArray/callFuncReturnsArray.good
R test/interop/C/exportArray/callFuncReturnsArray.lastcompopts
R test/interop/C/exportArray/callFuncReturnsArray.precomp
R test/interop/C/exportArray/callFuncReturnsArray.test.c
R test/interop/C/exportArray/callWrapArrayAsOpaque_global.cleanfiles
R test/interop/C/exportArray/callWrapArrayAsOpaque_global.good
R test/interop/C/exportArray/callWrapArrayAsOpaque_global.lastcompopts
R test/interop/C/exportArray/callWrapArrayAsOpaque_global.precomp
R test/interop/C/exportArray/callWrapArrayAsOpaque_global.test.c
R test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.cleanfiles
R test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.good
R test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.lastcompopts
R test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.precomp
R test/interop/C/exportArray/callWrapArrayAsOpaque_moreComplex.test.c
R test/interop/C/exportArray/checkIfEmpty.chpl
R test/interop/C/exportArray/checkIfEmpty.notest
R test/interop/C/exportArray/exportArrNoEltType.chpl
R test/interop/C/exportArray/exportArrNoEltType.compopts
R test/interop/C/exportArray/exportArrNoEltType.good
R test/interop/C/exportArray/exportArrNoEltType.noexec
R test/interop/C/exportArray/exportFuncWith1Arr1Not.chpl
R test/interop/C/exportArray/exportFuncWith1Arr1Not.notest
R test/interop/C/exportArray/exportFuncWith1Not1Arr.chpl
R test/interop/C/exportArray/exportFuncWith1Not1Arr.notest
R test/interop/C/exportArray/exportFuncWith2Arrays.chpl
R test/interop/C/exportArray/exportFuncWith2Arrays.notest
R test/interop/C/exportArray/exportFuncWithArrayArg.chpl
R test/interop/C/exportArray/exportFuncWithArrayArg.notest
R test/interop/C/exportArray/exportFuncWithExplicitVoidRet.chpl
R test/interop/C/exportArray/exportFuncWithExplicitVoidRet.notest
R test/interop/C/exportArray/exportFuncWithExternType.chpl
R test/interop/C/exportArray/exportFuncWithExternType.notest
R test/interop/C/exportArray/exportFuncWithPtr.chpl
R test/interop/C/exportArray/exportFuncWithPtr.notest
R test/interop/C/exportArray/exportFuncWithRealArr.chpl
R test/interop/C/exportArray/exportFuncWithRealArr.notest
R test/interop/C/exportArray/returnExternArray.chpl
R test/interop/C/exportArray/returnExternArray.notest
R test/interop/C/exportArray/returningArr/.gitignore
R test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.cleanfiles
R test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.good
R test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.lastcompopts
R test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.precomp
R test/interop/C/exportArray/returningArr/callExportedArrArgReturnInt.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArray.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArray.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArray.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArray.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArray.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayOfReals.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArg2.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.good
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.good
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray.test.c
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.cleanfiles
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.good
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.lastcompopts
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.precomp
R test/interop/C/exportArray/returningArr/callFuncReturnsBadArray2.test.c
R test/interop/C/exportArray/returningArr/exportArrArgReturnInt.chpl
R test/interop/C/exportArray/returningArr/exportArrArgReturnInt.notest
R test/interop/C/exportArray/returningArr/returnArray.chpl
R test/interop/C/exportArray/returningArr/returnArray.notest
R test/interop/C/exportArray/returningArr/returnArrayGenericDecl.chpl
R test/interop/C/exportArray/returningArr/returnArrayGenericDecl.notest
R test/interop/C/exportArray/returningArr/returnArrayGenericDecl2.chpl
R test/interop/C/exportArray/returningArr/returnArrayGenericDecl2.notest
R test/interop/C/exportArray/returningArr/returnArrayOfReals.chpl
R test/interop/C/exportArray/returningArr/returnArrayOfReals.notest
R test/interop/C/exportArray/returningArr/returnArrayTakesArg.chpl
R test/interop/C/exportArray/returningArr/returnArrayTakesArg.notest
R test/interop/C/exportArray/returningArr/returnArrayTakesArg2.chpl
R test/interop/C/exportArray/returningArr/returnArrayTakesArg2.notest
R test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg.chpl
R test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg.notest
R test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg2.chpl
R test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg2.notest
R test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg3.chpl
R test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg3.notest
R test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg4.chpl
R test/interop/C/exportArray/returningArr/returnArrayTakesArrayArg4.notest
R test/interop/C/exportArray/returningArr/returnBadArray-multiRank.chpl
R test/interop/C/exportArray/returningArr/returnBadArray-multiRank.good
R test/interop/C/exportArray/returningArr/returnBadArray-multiRank.noexec
R test/interop/C/exportArray/returningArr/returnBadArray-multiRank2.chpl
R test/interop/C/exportArray/returningArr/returnBadArray-multiRank2.good
R test/interop/C/exportArray/returningArr/returnBadArray-multiRank2.noexec
R test/interop/C/exportArray/returningArr/returnBadArray-strided.chpl
R test/interop/C/exportArray/returningArr/returnBadArray-strided.good
R test/interop/C/exportArray/returningArr/returnBadArray-strided.noexec
R test/interop/C/exportArray/returningArr/returnBadArray-strided2.chpl
R test/interop/C/exportArray/returningArr/returnBadArray-strided2.good
R test/interop/C/exportArray/returningArr/returnBadArray-strided2.noexec
R test/interop/C/exportArray/returningArr/returnBadArray.chpl
R test/interop/C/exportArray/returningArr/returnBadArray.notest
R test/interop/C/exportArray/returningArr/returnBadArray2.chpl
R test/interop/C/exportArray/returningArr/returnBadArray2.notest
R test/interop/C/exportArray/wrapArrayAsOpaque.chpl
R test/interop/C/exportArray/wrapArrayAsOpaque.good
R test/interop/C/exportArray/wrapArrayAsOpaque_global.chpl
R test/interop/C/exportArray/wrapArrayAsOpaque_global.notest
R test/interop/C/exportArray/wrapArrayAsOpaque_moreComplex.chpl
R test/interop/C/exportArray/wrapArrayAsOpaque_moreComplex.notest
R test/interop/C/exportArray/wrapArrayOfArrayAsOpaque.chpl
R test/interop/C/exportArray/wrapArrayOfArrayAsOpaque.good
R test/interop/C/exportArray/wrapExternArray-copy.chpl
R test/interop/C/exportArray/wrapExternArray-copy.compopts
R test/interop/C/exportArray/wrapExternArray-copy.good
R test/interop/C/exportArray/wrapExternArray-real.chpl
R test/interop/C/exportArray/wrapExternArray-real.compopts
R test/interop/C/exportArray/wrapExternArray-real.good
R test/interop/C/exportArray/wrapExternArray.chpl
R test/interop/C/exportArray/wrapExternArray.compopts
R test/interop/C/exportArray/wrapExternArray.good
R test/interop/C/exportBytes/.gitignore
R test/interop/C/exportBytes/CLEANFILES
R test/interop/C/exportBytes/PRECOMP
R test/interop/C/exportBytes/SKIPIF
R test/interop/C/exportBytes/TestLibrary.chpl
R test/interop/C/exportBytes/TestLibrary.notest
R test/interop/C/exportBytes/noArgsRetBytes.good
R test/interop/C/exportBytes/noArgsRetBytes.lastcompopts
R test/interop/C/exportBytes/noArgsRetBytes.test.c
R test/interop/C/exportString/.gitignore
R test/interop/C/exportString/CLEANFILES
R test/interop/C/exportString/PRECOMP
R test/interop/C/exportString/SKIPIF
R test/interop/C/exportString/TestLibrary.chpl
R test/interop/C/exportString/TestLibrary.notest
R test/interop/C/exportString/badFormalIntent.chpl
R test/interop/C/exportString/badFormalIntent.compopts
R test/interop/C/exportString/badFormalIntent.good
R test/interop/C/exportString/badReturnIntent.chpl
R test/interop/C/exportString/badReturnIntent.compopts
R test/interop/C/exportString/badReturnIntent.good
R test/interop/C/exportString/noArgsRetString.good
R test/interop/C/exportString/noArgsRetString.lastcompopts
R test/interop/C/exportString/noArgsRetString.test.c
R test/interop/C/exportString/nolib/exportStringRoutineNoLib.chpl
R test/interop/C/exportString/nolib/exportStringRoutineNoLib.good
R test/interop/C/exportString/stringArgsRetString.good
R test/interop/C/exportString/stringArgsRetString.lastcompopts
R test/interop/C/exportString/stringArgsRetString.test.c
R test/interop/C/exportString/stringArgsRetVoid.good
R test/interop/C/exportString/stringArgsRetVoid.lastcompopts
R test/interop/C/exportString/stringArgsRetVoid.test.c
R test/interop/C/externRecords/.gitignore
R test/interop/C/externRecords/defineRecord.h
R test/interop/C/externRecords/receiveExternRecord.chpl
R test/interop/C/externRecords/receiveExternRecord.notest
R test/interop/C/externRecords/sendExternRecord.cleanfiles
R test/interop/C/externRecords/sendExternRecord.good
R test/interop/C/externRecords/sendExternRecord.lastcompopts
R test/interop/C/externRecords/sendExternRecord.precomp
R test/interop/C/externRecords/sendExternRecord.test.c
R test/interop/C/globals/.gitignore
R test/interop/C/globals/CLEANFILES
R test/interop/C/globals/PRECOMP
R test/interop/C/globals/reliesOnGlobal.chpl
R test/interop/C/globals/reliesOnGlobal.notest
R test/interop/C/globals/use_reliesOnGlobal-library-init.good
R test/interop/C/globals/use_reliesOnGlobal-library-init.lastcompopts
R test/interop/C/globals/use_reliesOnGlobal-library-init.test.c
R test/interop/C/globals/use_reliesOnGlobal.good
R test/interop/C/globals/use_reliesOnGlobal.lastcompopts
R test/interop/C/globals/use_reliesOnGlobal.test.c
R test/interop/C/headerName/.gitignore
R test/interop/C/headerName/COMPOPTS
R test/interop/C/headerName/SKIPIF
R test/interop/C/headerName/checkHeaderAndLibSet.chpl
R test/interop/C/headerName/checkHeaderAndLibSet.cleanfiles
R test/interop/C/headerName/checkHeaderAndLibSet.compopts
R test/interop/C/headerName/checkHeaderAndLibSet.good
R test/interop/C/headerName/checkHeaderAndLibSet.noexec
R test/interop/C/headerName/checkHeaderAndLibSet.prediff
R test/interop/C/headerName/checkHeaderSet.chpl
R test/interop/C/headerName/checkHeaderSet.cleanfiles
R test/interop/C/headerName/checkHeaderSet.compopts
R test/interop/C/headerName/checkHeaderSet.good
R test/interop/C/headerName/checkHeaderSet.noexec
R test/interop/C/headerName/checkHeaderSet.prediff
R test/interop/C/headerName/checkLibNotHeaderSet.chpl
R test/interop/C/headerName/checkLibNotHeaderSet.cleanfiles
R test/interop/C/headerName/checkLibNotHeaderSet.compopts
R test/interop/C/headerName/checkLibNotHeaderSet.good
R test/interop/C/headerName/checkLibNotHeaderSet.noexec
R test/interop/C/headerName/checkLibNotHeaderSet.prediff
R test/interop/C/headerName/sub_test
R test/interop/C/hyphenated-name.chpl
R test/interop/C/hyphenated-name.cleanfiles
R test/interop/C/hyphenated-name.compopts
R test/interop/C/hyphenated-name.future
R test/interop/C/hyphenated-name.good
R test/interop/C/hyphenated-name.noexec
R test/interop/C/importConditionalCPtr.chpl
R test/interop/C/importConditionalCPtr.good
R test/interop/C/makefiles/.gitignore
R test/interop/C/makefiles/Makefile
R test/interop/C/makefiles/SKIPIF
R test/interop/C/makefiles/bar.h
R test/interop/C/makefiles/checkCommandLineLib.c
R test/interop/C/makefiles/checkEnvOverrides.chpl
R test/interop/C/makefiles/checkEnvOverrides.cleanfiles
R test/interop/C/makefiles/checkEnvOverrides.compenv
R test/interop/C/makefiles/checkEnvOverrides.compopts
R test/interop/C/makefiles/checkEnvOverrides.good
R test/interop/C/makefiles/checkEnvOverrides.noexec
R test/interop/C/makefiles/checkEnvOverrides.prediff
R test/interop/C/makefiles/checkEnvOverrides.skipif
R test/interop/C/makefiles/checkRequire.c
R test/interop/C/makefiles/checkRequire2.c
R test/interop/C/makefiles/commandLineLib.chpl
R test/interop/C/makefiles/commandLineLib.cleanfiles
R test/interop/C/makefiles/commandLineLib.compenv
R test/interop/C/makefiles/commandLineLib.compopts
R test/interop/C/makefiles/commandLineLib.good
R test/interop/C/makefiles/commandLineLib.noexec
R test/interop/C/makefiles/commandLineLib.precomp
R test/interop/C/makefiles/commandLineLib.prediff
R test/interop/C/makefiles/commandLineLib.skipif
R test/interop/C/makefiles/dynamicLinking/.gitignore
R test/interop/C/makefiles/dynamicLinking/CLEANFILES
R test/interop/C/makefiles/dynamicLinking/EXECENV
R test/interop/C/makefiles/dynamicLinking/FooLibrary.chpl
R test/interop/C/makefiles/dynamicLinking/FooLibrary.notest
R test/interop/C/makefiles/dynamicLinking/PRECOMP
R test/interop/C/makefiles/dynamicLinking/SKIPIF
R test/interop/C/makefiles/dynamicLinking/useSharedLibFromC.compopts
R test/interop/C/makefiles/dynamicLinking/useSharedLibFromC.good
R test/interop/C/makefiles/dynamicLinking/useSharedLibFromC.test.c
R test/interop/C/makefiles/envOverrides.c
R test/interop/C/makefiles/foo.c
R test/interop/C/makefiles/foo.h
R test/interop/C/makefiles/getMakefile.chpl
R test/interop/C/makefiles/getMakefile.cleanfiles
R test/interop/C/makefiles/getMakefile.compopts
R test/interop/C/makefiles/getMakefile.good
R test/interop/C/makefiles/getMakefile.noexec
R test/interop/C/makefiles/getMakefile.prediff
R test/interop/C/makefiles/mytest.c
R test/interop/C/makefiles/renamedLib.chpl
R test/interop/C/makefiles/renamedLib.cleanfiles
R test/interop/C/makefiles/renamedLib.compopts
R test/interop/C/makefiles/renamedLib.good
R test/interop/C/makefiles/renamedLib.noexec
R test/interop/C/makefiles/renamedLib.prediff
R test/interop/C/makefiles/renamedTest.c
R test/interop/C/makefiles/requireHeader.chpl
R test/interop/C/makefiles/requireHeader.cleanfiles
R test/interop/C/makefiles/requireHeader.compenv
R test/interop/C/makefiles/requireHeader.compopts
R test/interop/C/makefiles/requireHeader.good
R test/interop/C/makefiles/requireHeader.noexec
R test/interop/C/makefiles/requireHeader.prediff
R test/interop/C/makefiles/requireStmt.chpl
R test/interop/C/makefiles/requireStmt.cleanfiles
R test/interop/C/makefiles/requireStmt.compenv
R test/interop/C/makefiles/requireStmt.compopts
R test/interop/C/makefiles/requireStmt.good
R test/interop/C/makefiles/requireStmt.noexec
R test/interop/C/makefiles/requireStmt.precomp
R test/interop/C/makefiles/requireStmt.prediff
R test/interop/C/makefiles/requireStmt.skipif
R test/interop/C/makefiles/sub_test
R test/interop/C/noLibFlag/.gitignore
R test/interop/C/noLibFlag/CLEANFILES
R test/interop/C/noLibFlag/Makefile
R test/interop/C/noLibFlag/callDirSet.cleanfiles
R test/interop/C/noLibFlag/callDirSet.good
R test/interop/C/noLibFlag/callDirSet.lastcompopts
R test/interop/C/noLibFlag/callDirSet.precomp
R test/interop/C/noLibFlag/callDirSet.test.c
R test/interop/C/noLibFlag/checkHeaderSet.chpl
R test/interop/C/noLibFlag/checkHeaderSet.cleanfiles
R test/interop/C/noLibFlag/checkHeaderSet.compopts
R test/interop/C/noLibFlag/checkHeaderSet.good
R test/interop/C/noLibFlag/checkHeaderSet.noexec
R test/interop/C/noLibFlag/checkHeaderSet.prediff
R test/interop/C/noLibFlag/checkHeaderSet.skipif
R test/interop/C/noLibFlag/getMakefile.chpl
R test/interop/C/noLibFlag/getMakefile.cleanfiles
R test/interop/C/noLibFlag/getMakefile.compopts
R test/interop/C/noLibFlag/getMakefile.good
R test/interop/C/noLibFlag/getMakefile.noexec
R test/interop/C/noLibFlag/getMakefile.prediff
R test/interop/C/noLibFlag/getMakefile.skipif
R test/interop/C/noLibFlag/mytest.c
R test/interop/C/noLibFlag/setDir.chpl
R test/interop/C/noLibFlag/setDir.notest
R test/interop/C/noLibFlag/sub_test
R test/interop/C/testing.chpl
R test/interop/C/testing.notest
R test/interop/C/use_testing.cleanfiles
R test/interop/C/use_testing.good
R test/interop/C/use_testing.lastcompopts
R test/interop/C/use_testing.test.c
R test/library/standard/Endian/endianTest.compopts
R test/llvm/alignment/check-align-padding-error.compopts
R test/llvm/alignment/check-align-padding.compopts
R test/llvm/macros/SKIPIF
R test/llvm/vectorization/parallel_loop_accesses/SKIPIF
R test/llvm/version-in-llvm-ident-ir/SKIPIF
R third-party/llvm/Makefile.include-clang-included
R third-party/llvm/Makefile.share-included
M Makefile
M compiler/codegen/codegen.cpp
M compiler/codegen/expr.cpp
M compiler/include/driver.h
M compiler/llvm/llvmGlobalToWide.cpp
M compiler/main/clang_settings.h
M compiler/main/driver.cpp
M compiler/optimizations/noAliasSets.cpp
M compiler/parser/parser.cpp
M compiler/passes/resolveIntents.cpp
M compiler/passes/scopeResolve.cpp
M compiler/util/files.cpp
M doc/rst/technotes/llvm.rst
M doc/rst/usingchapel/chplenv.rst
M make/Makefile.base
M make/compiler/Makefile.clang
M make/compiler/Makefile.cray-prgenv
M make/compiler/Makefile.gnu
M make/compiler/Makefile.ibm
M make/compiler/Makefile.intel
M make/compiler/Makefile.pgi
M man/chpl.rst
M modules/Makefile
M runtime/Makefile.help
M runtime/etc/rtmain.c
M runtime/src/comm/ugni/Makefile.share
M test/compflags/albrecht/chplenv/generateChplEnvFiles
M test/compflags/bradc/longLineCppLines.compopts
M test/compflags/bradc/mungeUserIdents/testmunge-export.compopts
M test/compflags/bradc/mungeUserIdents/testmunge-extern.compopts
M test/compflags/bradc/mungeUserIdents/testmunge-extern.skipif
M test/compflags/bradc/mungeUserIdents/testmunge.compopts
M test/compflags/codegen/cppLines.compopts
M test/compflags/diten/savec.chpl
M test/compflags/ferguson/home/sub_test
M test/compflags/kushal/fastAndIncremental.skipif
M test/compflags/kushal/llvm-incremental.compopts
M test/compflags/kushal/llvm-incremental.skipif
M test/compflags/shannon/cpplines/cppLines.compopts
M test/execflags/sungeun/about.prediff
M test/extern/bradc/structs/externFloat4b.compopts
M test/extern/diten/externLong.compopts
M test/extern/diten/passlongptr.compopts
M test/extern/ferguson/extern-return-intent-overload.compopts
M test/extern/ferguson/extern-return-intent-overload.skipif
M test/extern/ferguson/externblock/extern-record-containing-anon-unnamed-union.future
M test/extern/ferguson/sizeof-extern-type/COMPOPTS
M test/extern/unions/externAnonUnnamedUnionC.compopts
M test/extern/unions/externAnonUnnamedUnionLLVM.compopts
M test/extern/unions/externAnonUnnamedUnionLLVM.future
M test/extern/unions/externAnonUnnamedUnionLLVM.skipif
M test/functions/ferguson/lineno/no-extra-lineno.compopts
M test/gpu/native.skipif
M test/gpu/native/gpuAddNums/gpuAddNums.compopts
M test/gpu/native/gpuAddNums/gpuAddNums_primitive.compopts
M test/interop/C/llvm.skipif
M test/interop/C/llvm/PRECOMP
M test/interop/C/llvm/exportArray/arrayOpaquePointer_noArgDom.compopts
M test/interop/C/llvm/exportArray/callArrayArg_queriedDomain.precomp
M test/interop/C/llvm/exportArray/callArrayOpaquePointer.precomp
M test/interop/C/llvm/exportArray/callCheckIfEmpty.precomp
M test/interop/C/llvm/exportArray/callExported2Arg.precomp
M test/interop/C/llvm/exportArray/callExported2ArgDiff.precomp
M test/interop/C/llvm/exportArray/callExported2Arrays.precomp
M test/interop/C/llvm/exportArray/callExportedArrayFunc.precomp
M test/interop/C/llvm/exportArray/callExportedExplicit.precomp
M test/interop/C/llvm/exportArray/callExportedRealArr.precomp
M test/interop/C/llvm/exportArray/callExportedWithExternType.precomp
M test/interop/C/llvm/exportArray/callExportedWithPtr.precomp
M test/interop/C/llvm/exportArray/callFuncReturnsArray.precomp
M test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_global.precomp
M test/interop/C/llvm/exportArray/callWrapArrayAsOpaque_moreComplex.precomp
M test/interop/C/llvm/exportArray/exportArrNoEltType.compopts
M test/interop/C/llvm/exportArray/returningArr/callExportedArrArgReturnInt.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArray.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayGenericDecl2.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayOfReals.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArg2.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg2.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg3.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsArrayTakesArrayArg4.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray.precomp
M test/interop/C/llvm/exportArray/returningArr/callFuncReturnsBadArray2.precomp
M test/interop/C/llvm/exportArray/wrapExternArray-copy.compopts
M test/interop/C/llvm/exportArray/wrapExternArray-real.compopts
M test/interop/C/llvm/exportArray/wrapExternArray.compopts
M test/interop/C/llvm/externRecords/sendExternRecord.precomp
M test/interop/C/llvm/globals/PRECOMP
M test/interop/C/llvm/headerName/COMPOPTS
M test/interop/C/llvm/headerName/SKIPIF
M test/interop/C/llvm/makefiles/SKIPIF
M test/interop/C/llvm/makefiles/commandLineLib.compopts
M test/interop/C/llvm/makefiles/dynamicLinking/PRECOMP
M test/interop/C/llvm/makefiles/dynamicLinking/SKIPIF
M test/interop/C/llvm/makefiles/getMakefile.compopts
M test/interop/C/llvm/makefiles/renamedLib.compopts
M test/interop/C/llvm/makefiles/requireHeader.compopts
M test/interop/C/llvm/makefiles/requireStmt.compopts
M test/interop/C/llvm/noLibFlag/callDirSet.precomp
M test/interop/C/llvm/noLibFlag/checkHeaderSet.compopts
M test/interop/C/llvm/noLibFlag/checkHeaderSet.skipif
M test/interop/C/llvm/noLibFlag/getMakefile.compopts
M test/interop/C/llvm/noLibFlag/getMakefile.skipif
M test/interop/C/multilocale.skipif
M test/interop/fortran/ChapelCallFortran/testCallFortran.compopts
M test/interop/fortran/FortranCallChapel/chapelProcs.compopts
M test/interop/fortran/genFortranInterface/chapelProcs.compopts
M test/interop/python/chapelBytes/SKIPIF
M test/interop/python/chapelStrings/SKIPIF
M test/interop/python/errorMessages/SKIPIF
M test/interop/python/multilocale.skipif
M test/interop/python/multilocale/SKIPIF
M test/library/packages/LAPACK.skipif
M test/llvm/abi/export-vs-c.compopts
M test/llvm/alignment/check-align16-field1.compopts
M test/llvm/alignment/check-align16.compopts
M test/llvm/dbg-intrinsics/dbg-proc.compopts
M test/llvm/function-args/read-none.compopts
M test/llvm/function-args/ref_nonnull.compopts
M test/llvm/gen-ids/llvm-gen-ids.compopts
M test/llvm/generate-nsw-for-signed/nsw-generation.compopts
M test/llvm/lifetime-intrinsics/lifetime-class.compopts
M test/llvm/lifetime-intrinsics/lifetime-multi-blocks.compopts
M test/llvm/lifetime-intrinsics/lifetime-multi-return.compopts
M test/llvm/lifetime-intrinsics/lifetime-no-return.compopts
M test/llvm/lifetime-intrinsics/lifetime-proc.compopts
M test/llvm/lifetime-intrinsics/lifetime-record.compopts
M test/llvm/lifetime-intrinsics/lifetime-ref.compopts
M test/llvm/lifetime-intrinsics/lifetime-temporaries.compopts
M test/llvm/lifetime-intrinsics/lifetime-throws.compopts
M test/llvm/llvm-invariant/config_const.compopts
M test/llvm/llvm-invariant/function_local_const.compopts
M test/llvm/llvm-invariant/global_const.compopts
M test/llvm/llvm-invariant/program_constructs.compopts
M test/llvm/llvmDebug/llvmDebug_test.py
M test/llvm/macros/COMPOPTS
M test/llvm/no-alias/SKIPIF
M test/llvm/no-alias/check-array-no-alias.compopts
M test/llvm/parallel_loop_access/SKIPIF
M test/llvm/parallel_loop_access/different_numbers.compopts
M test/llvm/parallel_loop_access/generation_inside_loop.compopts
M test/llvm/parallel_loop_access/no_parallel_loop_accesses.compopts
M test/llvm/parallel_loop_access/parallel_loop_accesses1.compopts
M test/llvm/parallel_loop_access/parallel_loop_accesses2.compopts
M test/llvm/parallel_loop_access/parallel_loop_accesses3.compopts
M test/llvm/parallel_loop_access/simple_forall.compopts
M test/llvm/parallel_loop_access/simple_loop.compopts
M test/llvm/parallel_loop_access/zippered_forall.compopts
M test/llvm/tail-call/SKIPIF
M test/llvm/tail-call/tail-call-check.compopts
M test/llvm/tbaa/SKIPIF
M test/llvm/tbaa/tbaa_class.compopts
M test/llvm/tbaa/tbaa_record.compopts
M test/llvm/tbaa/tbaa_scalar.compopts
M test/llvm/vectorization/SKIPIF
M test/llvm/vectorization/complicated_loop.compopts
M test/llvm/vectorization/double_loop.compopts
M test/llvm/vectorization/forall_loop.compopts
M test/llvm/vectorization/if_loop.compopts
M test/llvm/vectorization/nested_loop.compopts
M test/llvm/vectorization/parallel_loop.compopts
M test/llvm/vectorization/parallel_loop_novec.compopts
M test/llvm/vectorization/reduce_intent.compopts
M test/llvm/vectorization/simple_loop.compopts
M test/llvm/vectorization/simple_loop_novec.compopts
M test/llvm/vectorization/zipped_loop.compopts
M test/llvm/version-in-llvm-ident-ir/version-in-llvm-ir.compopts
M test/memory/gbt/test-memLog.skipif
M test/parallel/taskCompare/elliot/empty-omp-taskspawn.skipif
M test/parsing/ferguson/no-codegen-formal.compopts
M test/performance/bradc/refArgIsWide.compopts
M test/performance/ferguson/MYCOMPOPTS
M test/release/examples/primers/LAPACKlib.skipif
M test/runtime/configMatters/forall-unordered-opt/check-fence/COMPOPTS
M test/runtime/configMatters/forall-unordered-opt/check-fence/SKIPIF
M test/statements/diten/op_equals_using_C_primitive.compopts
M test/statements/diten/op_equals_using_C_primitive.skipif
M test/studies/colostate/Jacobi1D-DiamondByHand-OMP_dyn.skipif
M test/studies/colostate/Jacobi1D-DiamondByHand-OMP_static.skipif
M test/studies/colostate/Jacobi1D-NaiveParallel-OMP_static.skipif
M test/studies/colostate/Jacobi1D-Serial-C.skipif
M test/studies/colostate/Jacobi2D-DiamondByHandParam-OMP_dyn.skipif
M test/studies/colostate/Jacobi2D-DiamondByHandParam-OMP_static.skipif
M test/studies/colostate/Jacobi2D-NaiveParallel-OMP_dyn.skipif
M test/studies/colostate/Jacobi2D-NaiveParallel-OMP_static.skipif
M test/studies/colostate/Jacobi2D-NaiveParallelSpaceTiled-OMP.skipif
M test/studies/colostate/Jacobi2D-Serial-C.skipif
M test/trivial/bradc/savecInNonWriteableDir.compopts
M test/trivial/bradc/savecInNonWriteableDir.skipif
M test/types/cptr/func_ptr_as_c_fn_ptr.compopts
M test/types/cptr/func_ptr_as_c_fn_ptr.skipif
M test/types/range/elliot/anonymousRangeIter.compopts
M test/types/range/elliot/anonymousRangeIter.skipif
M test/users/ferguson/c_line_error/COMPOPTS
M test/users/npadmana/bugs/extern_struct_function_pointer/SKIPIF
M test/users/npadmana/funcPtrTypeTest/funcPtrType.skipif
M test/users/npadmana/funcPtrTypeTest/funcPtrType2.skipif
M third-party/gasnet/Makefile
M third-party/llvm/Makefile
M third-party/llvm/Makefile.include-bundled
M third-party/llvm/Makefile.include-llvm-minimal
M third-party/llvm/Makefile.share
M third-party/llvm/find-llvm-config.sh
M util/chplenv/chpl_arch.py
M util/chplenv/chpl_atomics.py
M util/chplenv/chpl_compiler.py
M util/chplenv/chpl_cpu.py
M util/chplenv/chpl_llvm.py
M util/chplenv/compiler_utils.py
M util/chplenv/printchplenv.py
M util/chplenv/third-party-pkgs
M util/chplenv/third_party_utils.py
M util/config/compileline.py
M util/cron/common-llvm.bash
M util/cron/nightly
M util/cron/test-gasnet.llvm.bash
M util/cron/test-llvm.bash
M util/cron/test-llvm.system.bash
M util/cron/test-slurm-gasnet-ibv.llvm.bash
M util/test/checkChplInstall
M util/test/paratest.chapcs
M util/test/paratest.local

Compare: https://github.com/chapel-lang/chapel/compare/ddf03142a67a...09b1be129065