[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Driver / msvc-triple.c
blobc546c1a405d4ab1140c3cc6d209086c8dc82e182
1 // RUN: %clang --target=i686-pc-windows-msvc19 -S -emit-llvm %s -o - | FileCheck %s --check-prefix=TARGET-19
2 // RUN: %clang --target=i686-pc-windows-msvc -S -emit-llvm %s -o - -fms-compatibility-version=19 | FileCheck %s --check-prefix=OVERRIDE-19
3 // RUN: %clang --target=i686-pc-windows-msvc-elf -S -emit-llvm %s -o - | FileCheck %s --check-prefix=ELF-DEFAULT
4 // RUN: %clang --target=i686-pc-windows-msvc -S -emit-llvm %s -o - | FileCheck %s --check-prefix=DEFAULT
6 // TARGET-19: target triple = "i686-pc-windows-msvc19.0.0"
7 // OVERRIDE-19: target triple = "i686-pc-windows-msvc19.0.0"
8 // ELF-DEFAULT: target triple = "i686-pc-windows-msvc{{.*}}-elf"
9 // DEFAULT: target triple = "i686-pc-windows-msvc{{[^-]+}}"