r299643 - [Sema] Retarget test to a specific platform for consistent datasizes

Simon Dardis via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 6 04:12:15 PDT 2017


Author: sdardis
Date: Thu Apr  6 06:12:14 2017
New Revision: 299643

URL: http://llvm.org/viewvc/llvm-project?rev=299643&view=rev
Log:
[Sema] Retarget test to a specific platform for consistent datasizes

Attempt to satisfy llvm-clang-x86_64-expensive-checks-win by targeting
x86_64-apple-darwin10 for Sema/vector-ops.c. The underlying failure is
due to datatype differences between platforms.


Modified:
    cfe/trunk/test/Sema/vector-ops.c

Modified: cfe/trunk/test/Sema/vector-ops.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/vector-ops.c?rev=299643&r1=299642&r2=299643&view=diff
==============================================================================
--- cfe/trunk/test/Sema/vector-ops.c (original)
+++ cfe/trunk/test/Sema/vector-ops.c Thu Apr  6 06:12:14 2017
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 %s -verify -fsyntax-only -Wvector-conversion
+// RUN: %clang_cc1 %s -verify -fsyntax-only -Wvector-conversion -triple x86_64-apple-darwin10
 typedef unsigned int v2u __attribute__ ((vector_size (8)));
 typedef int v2s __attribute__ ((vector_size (8)));
 typedef float v2f __attribute__ ((vector_size(8)));




More information about the cfe-commits mailing list