[PATCH] D156042: [clang][Interp] Implement __builtin_strlen

Timm Bäder via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sun Jul 23 11:49:35 PDT 2023


tbaeder marked an inline comment as done.
tbaeder added inline comments.


================
Comment at: clang/lib/AST/Interp/InterpBuiltin.cpp:114
+
+  // TODO: Push platform-dependent size_t.
+  S.Stk.push<Integral<64, false>>(Integral<64, false>::from(Len));
----------------
cor3ntin wrote:
> Why not do that in this patch?
I was trying to keep the patch small but here it is.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D156042/new/

https://reviews.llvm.org/D156042



More information about the cfe-commits mailing list