diff options
Diffstat (limited to 'test/Driver/msvc-triple.c')
-rw-r--r-- | test/Driver/msvc-triple.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/Driver/msvc-triple.c b/test/Driver/msvc-triple.c index f181b3199a3f3..cb0c338f84155 100644 --- a/test/Driver/msvc-triple.c +++ b/test/Driver/msvc-triple.c @@ -1,9 +1,7 @@ -// RUN: %clang -target i686-pc-windows-msvc -S -emit-llvm %s -o - | FileCheck %s --check-prefix=DEFAULT // 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 // RUN: %clang -target i686-pc-windows-msvc-elf -S -emit-llvm %s -o - | FileCheck %s --check-prefix=ELF-DEFAULT -// DEFAULT: target triple = "i686-pc-windows-msvc18.0.0" // TARGET-19: target triple = "i686-pc-windows-msvc19.0.0" // OVERRIDE-19: target triple = "i686-pc-windows-msvc19.0.0" -// ELF-DEFAULT: target triple = "i686-pc-windows-msvc18.0.0-elf" +// ELF-DEFAULT: target triple = "i686-pc-windows-msvc{{.*}}-elf" |