[PATCH] D126903: [clang] Add support for __builtin_memset_inline
Clement Courbet via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 10 06:01:25 PDT 2022
courbet accepted this revision.
courbet added inline comments.
This revision is now accepted and ready to land.
================
Comment at: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:7355
+ isVol, true, DstPtrInfo, AAInfo);
+ assert(Result && "getMemsetStores must return a valid sequence");
+ return Result;
----------------
maybe add `when AlwaysInline` to make the issue more obvious.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D126903/new/
https://reviews.llvm.org/D126903
More information about the cfe-commits
mailing list