RKSimon added inline comments.
================ Comment at: test/CodeGen/x86_32-m64-darwin.c:1 +// RUN: %clang_cc1 -w -fblocks -triple i386-apple-darwin9 -target-cpu yonah -target-feature +mmx -emit-llvm -O2 -o - %s | FileCheck %s + ---------------- You should be able to merge all of these triples into the same test file, each with their own RUN: line, you will need to add a FileCheck prefix, something like: ``` | FileCheck %s --check-prefixes=CHECK,DARWIN | FileCheck %s --check-prefixes=CHECK,IAMCU | FileCheck %s --check-prefixes=CHECK,LINUX | FileCheck %s --check-prefixes=CHECK,WIN32 ``` CHANGES SINCE LAST ACTION https://reviews.llvm.org/D59744/new/ https://reviews.llvm.org/D59744 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits