[PATCH] D159274: [clang][dataflow] When dumping `ExprToVal`, dump the `Value`, not just its location.
Martin Böhme via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Sep 4 00:39:06 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG266c12a1bd60: [clang][dataflow] When dumping `ExprToVal`, dump the `Value`, not just its… (authored by mboehme).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D159274/new/
https://reviews.llvm.org/D159274
Files:
clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp
Index: clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp
===================================================================
--- clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp
+++ clang/lib/Analysis/FlowSensitive/DataflowEnvironment.cpp
@@ -918,7 +918,7 @@
OS << "ExprToVal:\n";
for (auto [E, V] : ExprToVal)
- OS << " [" << E << ", " << V << "]\n";
+ OS << " [" << E << ", " << V << ": " << *V << "]\n";
OS << "LocToVal:\n";
for (auto [L, V] : LocToVal) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D159274.555667.patch
Type: text/x-patch
Size: 498 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230904/456c6ed0/attachment.bin>
More information about the cfe-commits
mailing list