I have a test I want to run for all plaforms that support inline asm, so I can test the generic constraints, i.e.
// RUN: %clang_cc1 -triple x86_64-pc-win64 %s -emit-llvm -o - | FileCheck %s
// RUN: %clang_cc1 -triple i686-pc-win32 %s -emit-llvm -o - | FileCheck %s
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 %s -emit-llvm -o - | FileCheck %s
// RUN: %clang_cc1 -triple i686-apple-darwin9 %s -emit-llvm -o - | FileCheck %s
// etc.
Is there a list somewhere of all the valid triples I should be using?
Thanks.
-John