[Matrix] Pass darwin tripe to SeamObjc test to fix windows bot failure.
authorFlorian Hahn <flo@fhahn.com>
Thu, 18 Jun 2020 12:33:14 +0000 (13:33 +0100)
committerFlorian Hahn <flo@fhahn.com>
Thu, 18 Jun 2020 12:35:03 +0000 (13:35 +0100)
Without the triple, the test fails on a windows bot
(http://lab.llvm.org:8011/builders/clang-x64-windows-msvc/builds/16531/steps/stage%201%20check/logs/stdio)

because of different full type widths (unsigned long long vs unsigned long)

clang/test/SemaObjC/matrix-type-builtins.m

index 8187bff..dc18905 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -fsyntax-only -verify -fenable-matrix %s
+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify -fenable-matrix %s
 
 typedef double double4x4 __attribute__((matrix_type(4, 4)));
 typedef unsigned u4x4 __attribute__((matrix_type(4, 4)));