[PATCH] D98757: [AMX] Not fold constant bitcast into amx intrisic
Xiang Zhang via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 16 20:35:34 PDT 2021
xiangzhangllvm added inline comments.
================
Comment at: clang/test/CodeGen/X86/amx_api.c:39
+void test_tile_init(short row, short col) {
+ __tile1024i c = {row, col, {1, 2, 3}};
+ __tile_stored(buf, STRIDE, c);
----------------
we usually write like this __tile1024i c = {row, col};
rm {1,2,3} will also see as {row, col, {0,...}}
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D98757/new/
https://reviews.llvm.org/D98757
More information about the cfe-commits
mailing list