[PATCH] D60548: Variable auto-init: also auto-init alloca

JF Bastien via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 11 13:20:48 PDT 2019


jfb marked 2 inline comments as done.
jfb added inline comments.


================
Comment at: lib/CodeGen/CGBuiltin.cpp:57
+  case LangOptions::TrivialAutoVarInitKind::Pattern:
+    Byte = CGF.Builder.getInt8(0xAA);
+    break;
----------------
rjmccall wrote:
> 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.
Done.


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