================ @@ -0,0 +1,46 @@ +// RUN: %clang_cc1 %s -fclangir -emit-cir -triple spir-unknown-unknown -o %t.cir +// RUN: FileCheck %s --input-file=%t.cir --check-prefix=CIR + +// RUN: %clang_cc1 %s -fclangir -emit-llvm -triple spir-unknown-unknown -o %t.ll +// RUN: FileCheck %s --input-file=%t.ll --check-prefix=LLVM + +// RUN: %clang_cc1 %s -emit-llvm -triple spir-unknown-unknown -o %t.ll +// RUN: FileCheck %s --input-file=%t.ll --check-prefix=OGCG ---------------- andykaylor wrote:
```suggestion // RUN: FileCheck %s --input-file=%t.ll --check-prefix=LLVM ``` We've started using a single check prefix if the results match (and it looks like they do). https://github.com/llvm/llvm-project/pull/196836 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
