mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 14:06:39 +00:00

GCC from 11 onwards defaults to -std=gnu++17 for C++ source files. We want to do the same (https://discourse.llvm.org/t/c-objc-switch-to-gnu-17-as-the-default-dialect/64360). Split RUN lines, adjust `-verify`, or add `__cplusplus < 201703L` or `-Wno-dynamic-exception-spec`, so that tests will pass regardless of gnu++14/gnu++17 default. We have a desire to mark a test compatible with multiple language standards. There are ongoing discussions how to add markers in the long term: * https://discourse.llvm.org/t/iterating-lit-run-lines/62596 * https://discourse.llvm.org/t/lit-run-a-run-line-multiple-times-with-different-replacements/64932 As a workaround in the short term, add lit substitutions `%std_cxx98-`, `%std_cxx11-14`, etc. They can be used for tests which work across multiple language standards. If a range has `n` standards, run lit multiple times, with `LIT_CLANG_STD_GROUP=0`, `LIT_CLANG_STD_GROUP=1`, etc to cover all `n` standards. Reviewed By: #clang-language-wg, aaron.ballman Differential Revision: https://reviews.llvm.org/D131464
85 lines
1.9 KiB
C++
85 lines
1.9 KiB
C++
// RUN: %clang_cc1 -target-feature +altivec -flax-vector-conversions=none -triple powerpc-unknown-unknown -fcxx-exceptions -verify=expected,precxx17 %std_cxx98-14 %s
|
|
// RUN: %clang_cc1 -target-feature +altivec -flax-vector-conversions=none -triple powerpc-unknown-unknown -fcxx-exceptions -verify %std_cxx17- %s
|
|
|
|
typedef int V4i __attribute__((vector_size(16)));
|
|
|
|
void test_vec_step(vector short arg1) {
|
|
vector bool char vbc;
|
|
vector signed char vsc;
|
|
vector unsigned char vuc;
|
|
vector bool short vbs;
|
|
vector short vs;
|
|
vector unsigned short vus;
|
|
vector pixel vp;
|
|
vector bool int vbi;
|
|
vector int vi;
|
|
vector unsigned int vui;
|
|
vector float vf;
|
|
|
|
vector int *pvi;
|
|
|
|
int res1[vec_step(arg1) == 8 ? 1 : -1];
|
|
int res2[vec_step(vbc) == 16 ? 1 : -1];
|
|
int res3[vec_step(vsc) == 16 ? 1 : -1];
|
|
int res4[vec_step(vuc) == 16 ? 1 : -1];
|
|
int res5[vec_step(vbs) == 8 ? 1 : -1];
|
|
int res6[vec_step(vs) == 8 ? 1 : -1];
|
|
int res7[vec_step(vus) == 8 ? 1 : -1];
|
|
int res8[vec_step(vp) == 8 ? 1 : -1];
|
|
int res9[vec_step(vbi) == 4 ? 1 : -1];
|
|
int res10[vec_step(vi) == 4 ? 1 : -1];
|
|
int res11[vec_step(vui) == 4 ? 1 : -1];
|
|
int res12[vec_step(vf) == 4 ? 1 : -1];
|
|
int res13[vec_step(*pvi) == 4 ? 1 : -1];
|
|
}
|
|
|
|
void f(V4i a)
|
|
{
|
|
}
|
|
|
|
void test1()
|
|
{
|
|
V4i vGCC;
|
|
vector int vAltiVec;
|
|
|
|
f(vAltiVec);
|
|
vGCC = vAltiVec;
|
|
bool res = vGCC > vAltiVec;
|
|
vAltiVec = 0 ? vGCC : vGCC;
|
|
}
|
|
|
|
template<typename T>
|
|
void template_f(T param) {
|
|
param++;
|
|
}
|
|
|
|
void test2()
|
|
{
|
|
vector int vi;
|
|
++vi;
|
|
vi++;
|
|
--vi;
|
|
vi--;
|
|
vector float vf;
|
|
vf++;
|
|
|
|
++vi=vi; // precxx17-warning {{unsequenced}}
|
|
(++vi)[1]=1;
|
|
template_f(vi);
|
|
}
|
|
|
|
namespace LValueToRValueConversions {
|
|
struct Struct {
|
|
float f();
|
|
int n();
|
|
};
|
|
|
|
vector float initFloat = (vector float)(Struct().f); // expected-error {{did you mean to call it}}
|
|
vector int initInt = (vector int)(Struct().n); // expected-error {{did you mean to call it}}
|
|
}
|
|
|
|
void f() {
|
|
try {}
|
|
catch (vector pixel px) {}
|
|
};
|