[PATCH] D96407: [flang][driver] Add extension options and -finput-charset

Faris Rehman via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Feb 15 05:13:07 PST 2021


FarisRehman added inline comments.


================
Comment at: flang/test/Flang-Driver/implicit-none.f90:10
+! RUN: not %flang-new -fsyntax-only -fimplicit-none %s  2>&1 | FileCheck %s --check-prefix=ALWAYS
+! RUN: %flang-new -fsyntax-only -fno-implicit-none %s  2>&1 | FileCheck %s --allow-empty --check-prefix=DEFAULT
+
----------------
awarzynski wrote:
> What about:
> ```
> ! RUN: %flang-new -fsyntax-only %s  2>&1 | FileCheck %s --allow-empty --check-prefix=DEFAULT
> ```
> and:
> ```
> ! RUN: %flang-new -fimplicit-none -fno-implicit-none -fsyntax-only %s  2>&1 | FileCheck %s --allow-empty --check-prefix=DEFAULT
> ```
> 
> Similar point for other tests.
The first test is already present, and I have now modified the `-fno-implicit-none` test to specify `-fimplicit-none` before it to show the behaviour more clearly. 


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D96407/new/

https://reviews.llvm.org/D96407



More information about the cfe-commits mailing list