We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimal test case:
static void attribute((noinline)) print_acc(__vector_quad *a) { vector unsigned char a0[4]; __builtin_mma_disassemble_acc((void *)(a0), a); print_values(a0[0]); } void test(__vector_quad *a, vector unsigned char ac) { __builtin_mma_xvf32ger(a, ac, ac); print_acc(a); }
To reproduce: clang -O3 -mcpu=pwr10 t.c -S
The text was updated successfully, but these errors were encountered:
assigned to @ahsansaghir
Sorry, something went wrong.
Fix proposed in https://reviews.llvm.org/D101188
Patch committed: https://reviews.llvm.org/rG670736a904746e92dde141266b6d4881b56d51a2
Merged: 225b775
ahsansaghir
No branches or pull requests
Extended Description
Minimal test case:
static void attribute((noinline)) print_acc(__vector_quad *a) {
vector unsigned char a0[4];
__builtin_mma_disassemble_acc((void *)(a0), a);
print_values(a0[0]);
}
void test(__vector_quad *a, vector unsigned char ac) {
__builtin_mma_xvf32ger(a, ac, ac);
print_acc(a);
}
To reproduce:
clang -O3 -mcpu=pwr10 t.c -S
The text was updated successfully, but these errors were encountered: