[clang] eb4c758 - [Matrix] Pass darwin tripe to SeamObjc test to fix windows bot failure.

Hans Wennborg via cfe-commits cfe-commits at lists.llvm.org
Thu Jun 18 06:45:03 PDT 2020


Thanks! I see it also fails on ARM
(http://lab.llvm.org:8011/builders/clang-cmake-armv8-lld/builds/4438),
so my sneaky change to fix the test
(d8c612b7eabcc7ec399fad533d5beefa4ae08ac9) was not enough.

On Thu, Jun 18, 2020 at 2:36 PM Florian Hahn via cfe-commits
<cfe-commits at lists.llvm.org> wrote:
>
>
> Author: Florian Hahn
> Date: 2020-06-18T13:35:03+01:00
> New Revision: eb4c758fe4b60ae3779d3e9401d00ee1450ae41b
>
> URL: https://github.com/llvm/llvm-project/commit/eb4c758fe4b60ae3779d3e9401d00ee1450ae41b
> DIFF: https://github.com/llvm/llvm-project/commit/eb4c758fe4b60ae3779d3e9401d00ee1450ae41b.diff
>
> LOG: [Matrix] Pass darwin tripe to SeamObjc test to fix windows bot failure.
>
> 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)
>
> Added:
>
>
> Modified:
>     clang/test/SemaObjC/matrix-type-builtins.m
>
> Removed:
>
>
>
> ################################################################################
> diff  --git a/clang/test/SemaObjC/matrix-type-builtins.m b/clang/test/SemaObjC/matrix-type-builtins.m
> index 8187bffae525..dc18905963e4 100644
> --- a/clang/test/SemaObjC/matrix-type-builtins.m
> +++ b/clang/test/SemaObjC/matrix-type-builtins.m
> @@ -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)));
>
>
>
> _______________________________________________
> cfe-commits mailing list
> cfe-commits at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits


More information about the cfe-commits mailing list