[PATCH] D136737: [Draft] [clang] Add builtin_unspecified_value
Erich Keane via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 26 11:51:35 PDT 2022
erichkeane added inline comments.
================
Comment at: clang/lib/Sema/TreeTransform.h:11725
+TreeTransform<Derived>::TransformUnspecifiedValueExpr(UnspecifiedValueExpr *E) {
+ return E;
+}
----------------
aaron.ballman wrote:
> @erichkeane -- is this correct, or does work need to be done to instantiate the underlying type if the expression is dependent?
No, a transform on the type does need to happen.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D136737/new/
https://reviews.llvm.org/D136737
More information about the cfe-commits
mailing list