================ @@ -0,0 +1,8 @@ +! -flto passes along an explicit GlobalISel flag. +! RUN: %flang --target=aarch64-linux-gnu -### %s -flto -fglobal-isel 2> %t +! RUN: FileCheck --check-prefix=CHECK-GISEL < %t %s ---------------- tarunprabhu wrote:
Could stderr just be piped to FileCheck here? If so, our SSD's might appreciate it ;-) ```suggestion ! RUN: %flang --target=aarch64-linux-gnu -### %s -flto -fglobal-isel 2>&1 \ ! RUN: | FileCheck --check-prefix=CHECK-GISEL %s ``` https://github.com/llvm/llvm-project/pull/177188 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
