commit | 5281b8ed0e395603e5ff15ecc01ee0d0dff2e0fd | [log] [tgz] |
---|---|---|
author | Zhongxing Xu <xuzhongxing@gmail.com> | Wed Nov 24 06:33:02 2010 +0000 |
committer | Zhongxing Xu <xuzhongxing@gmail.com> | Wed Nov 24 06:33:02 2010 +0000 |
tree | eb72b30129a0ccfa068830f49e75c79ae75df9bc | |
parent | 7eb0a9eb0cde8444b97f9c5b713d9be7a6f1e607 [diff] |
print asLValue attribute of CFGStmt. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120086 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CFG.cpp b/lib/Analysis/CFG.cpp index b371f6a..57e67e4 100644 --- a/lib/Analysis/CFG.cpp +++ b/lib/Analysis/CFG.cpp
@@ -3065,6 +3065,9 @@ OS << " (BindTemporary)"; } + if (CS.asLValue()) + OS << " (asLValue)"; + // Expressions need a newline. if (isa<Expr>(S)) OS << '\n';