diff options
Diffstat (limited to 'flang/test/Semantics/common.sh')
-rw-r--r-- | flang/test/Semantics/common.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/flang/test/Semantics/common.sh b/flang/test/Semantics/common.sh index ac2dab7ac075..22cdc9bfb22e 100644 --- a/flang/test/Semantics/common.sh +++ b/flang/test/Semantics/common.sh @@ -1,7 +1,8 @@ # Common functionality for test scripts # Process arguments, expecting source file as 1st; optional path to f18 as 2nd -# Set: $F18 to the path to f18 with options; $temp to an empty temp directory; -# and $src to the full path of the single source argument. +# Set: $FLANG_FC1 to the path to the Flang frontend driver with options; $temp +# to an empty temp directory; and $src to the full path of the single source +# argument. function die { echo "$(basename $0): $*" >&2 @@ -22,4 +23,4 @@ mkdir -p $temp shift [[ ! -f $1 ]] && die "f18 executable not found: $1" -F18="$*" +FLANG_FC1="$*" |