================ @@ -12,7 +12,9 @@ ! RUN: %flang -### --target=x86_64-unknown-haiku %S/Inputs/hello.f90 2>&1 | FileCheck %s --check-prefixes=CHECK,HAIKU,HAIKU-F128%f128-lib ! RUN: %flang -### --target=x86_64-windows-gnu %S/Inputs/hello.f90 2>&1 | FileCheck %s --check-prefixes=CHECK,MINGW,MINGW-F128%f128-lib -! RUN: %flang -### -rtlib=compiler-rt --target=aarch64-linux-gnu %S/Inputs/hello.f90 2>&1 | FileCheck %s --check-prefixes=CHECK,UNIX,COMPILER-RT +! RUN: %flang -### -rtlib=compiler-rt --target=aarch64-linux-gnu %S/Inputs/hello.f90 2>&1 | FileCheck %s \ +! RUN: --implicit-check-not='"-lgcc"' \ ---------------- leovancekang wrote:
Updated. I used `--implicit-check-not` to make the exact `"-lgcc"` exclusion apply to the entire FileCheck input. That stronger check is not necessary for this test, so I removed the option and restored the original `COMPILER-RT-NOT: "-lgcc"` check. https://github.com/llvm/llvm-project/pull/212419 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
