2015-06-08 08:22:46 +08:00
|
|
|
// RUN: %clang -target i686-pc-windows-msvc19 -S -emit-llvm %s -o - | FileCheck %s --check-prefix=TARGET-19
|
|
|
|
// RUN: %clang -target i686-pc-windows-msvc -S -emit-llvm %s -o - -fms-compatibility-version=19 | FileCheck %s --check-prefix=OVERRIDE-19
|
2015-06-09 14:30:01 +08:00
|
|
|
// RUN: %clang -target i686-pc-windows-msvc-elf -S -emit-llvm %s -o - | FileCheck %s --check-prefix=ELF-DEFAULT
|
2016-12-08 07:39:44 +08:00
|
|
|
// RUN: %clang -target i686-pc-windows-msvc -S -emit-llvm %s -o - | FileCheck %s --check-prefix=DEFAULT
|
2015-06-08 08:22:46 +08:00
|
|
|
|
|
|
|
// TARGET-19: target triple = "i686-pc-windows-msvc19.0.0"
|
|
|
|
// OVERRIDE-19: target triple = "i686-pc-windows-msvc19.0.0"
|
2016-05-14 07:20:11 +08:00
|
|
|
// ELF-DEFAULT: target triple = "i686-pc-windows-msvc{{.*}}-elf"
|
2016-12-08 07:39:44 +08:00
|
|
|
// DEFAULT: target triple = "i686-pc-windows-msvc{{[^-]+}}"
|