[PATCH] D144943: [clang][Interp] Implement bitcasts (WIP)
Aaron Ballman via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 9 07:12:02 PDT 2023
aaron.ballman added a comment.
There's still quite a few unaddressed comments, FWIW.
================
Comment at: clang/lib/AST/Interp/Boolean.h:113
+
+ void bitcastToMemory(std::byte *Buff) { std::memcpy(Buff, &V, sizeof(V)); }
+
----------------
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D144943/new/
https://reviews.llvm.org/D144943
More information about the cfe-commits
mailing list