From: Saleem Abdulrasool Date: Sun, 17 Jul 2016 22:54:42 +0000 (+0000) Subject: test: add missing triple to test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1e12d6f9ba50b15cfd21614f9b33ed98986da5e;p=clang test: add missing triple to test The test was relying on the default triple which may not be correct. Explicitly provide it a triple. Should repair the windows on Linux builder. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@275738 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenObjC/hidden-visibility.m b/test/CodeGenObjC/hidden-visibility.m index 9f5071d5ff..cb23ca18f8 100644 --- a/test/CodeGenObjC/hidden-visibility.m +++ b/test/CodeGenObjC/hidden-visibility.m @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fvisibility hidden -emit-llvm -o - %s | FileCheck %s +// RUN: %clang_cc1 -triple i386-apple-macosx -fvisibility hidden -emit-llvm -o - %s | FileCheck %s // CHECK: @"OBJC_IVAR_$_I.P" = hidden // CHECK: @"OBJC_CLASS_$_I" = hidden // CHECK: @"OBJC_METACLASS_$_I" = hidden