[PATCH] D60548: Variable auto-init: also auto-init alloca
John McCall via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 11 12:56:52 PDT 2019
rjmccall added inline comments.
================
Comment at: lib/CodeGen/CGBuiltin.cpp:57
+ case LangOptions::TrivialAutoVarInitKind::Pattern:
+ Byte = CGF.Builder.getInt8(0xAA);
+ break;
----------------
Can this value be taken from some common source with the existing code? I mean, even if it's just a constant in some header, that'd be a start.
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60548/new/
https://reviews.llvm.org/D60548
More information about the cfe-commits
mailing list