diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-04-24 00:48:04 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-04-24 00:48:04 +0000 |
commit | e4381ee7067715adc8f898a2c24a1d3b9e608659 (patch) | |
tree | f21c6819b4640f88f11cf50eb606df6ae4c76105 | |
parent | 8b83fb590d86a85c7169e9a17a7c0996253f26e2 (diff) | |
download | bcm5719-llvm-e4381ee7067715adc8f898a2c24a1d3b9e608659.tar.gz bcm5719-llvm-e4381ee7067715adc8f898a2c24a1d3b9e608659.zip |
Fix test after r359009 on platforms where %ms_abi_triple is 32-bit
llvm-svn: 359057
-rw-r--r-- | clang/test/CodeGenCXX/cxx2a-three-way-comparison.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/cxx2a-three-way-comparison.cpp b/clang/test/CodeGenCXX/cxx2a-three-way-comparison.cpp index 83a899f53f8..e3c1535815f 100644 --- a/clang/test/CodeGenCXX/cxx2a-three-way-comparison.cpp +++ b/clang/test/CodeGenCXX/cxx2a-three-way-comparison.cpp @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -std=c++2a -emit-llvm %s -o - -triple %itanium_abi_triple | FileCheck %s --check-prefix=ITANIUM -// RUN: %clang_cc1 -std=c++2a -emit-llvm %s -o - -triple %ms_abi_triple 2>&1 | FileCheck %s --check-prefix=MSABI +// RUN: %clang_cc1 -std=c++2a -emit-llvm %s -o - -triple x86_64-pc-win32 2>&1 | FileCheck %s --check-prefix=MSABI // RUN: not %clang_cc1 -std=c++2a -emit-llvm %s -o - -triple %itanium_abi_triple -DBUILTIN 2>&1 | FileCheck %s --check-prefix=BUILTIN struct A { |