================ @@ -0,0 +1,18 @@ +; REQUIRES: x86-registered-target +; RUN: llc < %s %loadnewpmbye | FileCheck %s --check-prefix=CHECK-ASM +; RUN: llc < %s %loadnewpmbye -last-words | FileCheck %s --check-prefix=CHECK-ACTIVE +; RUN: not llc %s %loadnewpmbye -last-words -filetype=obj 2>&1 | FileCheck %s --check-prefix=CHECK-ERR ---------------- mikaelholmen wrote:
I think this RUN line is opening a file codegen-plugin.o in the local directory (which may be write protected) for the output. Can we change it to stdout (or dev/null if we're nott interested in it)? Maybe just do "< %s" as in the other RUN lines? https://github.com/llvm/llvm-project/pull/170846 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
