r359057 - Fix test after r359009 on platforms where %ms_abi_triple is 32-bit

Nico Weber via cfe-commits cfe-commits at lists.llvm.org
Tue Apr 23 17:48:04 PDT 2019


Author: nico
Date: Tue Apr 23 17:48:04 2019
New Revision: 359057

URL: http://llvm.org/viewvc/llvm-project?rev=359057&view=rev
Log:
Fix test after r359009 on platforms where %ms_abi_triple is 32-bit

Modified:
    cfe/trunk/test/CodeGenCXX/cxx2a-three-way-comparison.cpp

Modified: cfe/trunk/test/CodeGenCXX/cxx2a-three-way-comparison.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/cxx2a-three-way-comparison.cpp?rev=359057&r1=359056&r2=359057&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/cxx2a-three-way-comparison.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/cxx2a-three-way-comparison.cpp Tue Apr 23 17:48:04 2019
@@ -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 {




More information about the cfe-commits mailing list