[PATCH] D76617: [SveEmitter] Fix encoding/decoding of SVETypeFlags
Andrzej Warzynski via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 6 03:45:34 PDT 2020
andwar added inline comments.
================
Comment at: clang/utils/TableGen/SveEmitter.cpp:240
+ // Returns the SVETypeFlags for the given memory element type.
+ uint64_t encodeMemoryElementType(unsigned MT) {
+ return encodeFlag(MT, "MemEltTypeMask");
----------------
Shouldn't `MT` be `uint64_t` instead of `unsigned`?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D76617/new/
https://reviews.llvm.org/D76617
More information about the cfe-commits
mailing list