r312749 - Add target triple to improve the happiness of MSVC buildbots.

Richard Smith via cfe-commits cfe-commits at lists.llvm.org
Thu Sep 7 15:07:52 PDT 2017


Author: rsmith
Date: Thu Sep  7 15:07:52 2017
New Revision: 312749

URL: http://llvm.org/viewvc/llvm-project?rev=312749&view=rev
Log:
Add target triple to improve the happiness of MSVC buildbots.

Modified:
    cfe/trunk/test/CXX/modules-ts/basic/basic.link/p3.cppm

Modified: cfe/trunk/test/CXX/modules-ts/basic/basic.link/p3.cppm
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/modules-ts/basic/basic.link/p3.cppm?rev=312749&r1=312748&r2=312749&view=diff
==============================================================================
--- cfe/trunk/test/CXX/modules-ts/basic/basic.link/p3.cppm (original)
+++ cfe/trunk/test/CXX/modules-ts/basic/basic.link/p3.cppm Thu Sep  7 15:07:52 2017
@@ -1,5 +1,5 @@
-// RUN: %clang_cc1 -fmodules-ts %s -emit-module-interface -o %t
-// RUN: %clang_cc1 -fmodules-ts -x pcm %t -emit-llvm -o - | FileCheck %s
+// RUN: %clang_cc1 -fmodules-ts -triple x86_64-linux %s -emit-module-interface -o %t
+// RUN: %clang_cc1 -fmodules-ts -triple x86_64-linux -x pcm %t -emit-llvm -o - | FileCheck %s
 
 export module M;
 




More information about the cfe-commits mailing list