1*67e74705SXin Li // RUN: %clang -target i686-pc-windows-msvc19 -S -emit-llvm %s -o - | FileCheck %s --check-prefix=TARGET-19 2*67e74705SXin Li // RUN: %clang -target i686-pc-windows-msvc -S -emit-llvm %s -o - -fms-compatibility-version=19 | FileCheck %s --check-prefix=OVERRIDE-19 3*67e74705SXin Li // RUN: %clang -target i686-pc-windows-msvc-elf -S -emit-llvm %s -o - | FileCheck %s --check-prefix=ELF-DEFAULT 4*67e74705SXin Li 5*67e74705SXin Li // TARGET-19: target triple = "i686-pc-windows-msvc19.0.0" 6*67e74705SXin Li // OVERRIDE-19: target triple = "i686-pc-windows-msvc19.0.0" 7*67e74705SXin Li // ELF-DEFAULT: target triple = "i686-pc-windows-msvc{{.*}}-elf" 8