summaryrefslogtreecommitdiffstats
path: root/clang/test/Parser/vsx.c
blob: ead09814c8c1295deec264e6f4728a23200270c7 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -triple=powerpc64-unknown-linux-gnu -faltivec -target-feature +vsx -fsyntax-only -verify %s
// RUN: %clang_cc1 -triple=powerpc64le-unknown-linux-gnu -faltivec -target-feature +vsx -fsyntax-only -verify %s

// Legitimate for VSX.
__vector double vv_d1;
vector double v_d2;

// These should have errors.
__vector long double  vv_ld3;        // expected-error {{cannot use 'long double' with '__vector'}}
vector long double  v_ld4;           // expected-error {{cannot use 'long double' with '__vector'}}
OpenPOWER on IntegriCloud