diff options
author | Mike Stump <mrs@apple.com> | 2009-08-26 21:11:25 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-08-26 21:11:25 +0000 |
commit | be3289d0e00b89722d91b4e4e167627ff7189677 (patch) | |
tree | 335cbc3c68d541b4d4bece8896ecbf093b5fca10 | |
parent | f0070dbae9535836ad41711081465dec2259786b (diff) |
More work for conversion functions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80142 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AST/StmtDumper.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/AST/StmtDumper.cpp b/lib/AST/StmtDumper.cpp index 18c278118f..5f680ea542 100644 --- a/lib/AST/StmtDumper.cpp +++ b/lib/AST/StmtDumper.cpp @@ -330,6 +330,9 @@ void StmtDumper::VisitCastExpr(CastExpr *Node) { case CastExpr::CK_BaseToDerivedMemberPointer: fprintf(F, "<BaseToDerivedMemberPointer>"); break; + case CastExpr::CK_UserDefinedConversion: + fprintf(F, "<UserDefinedConversion>"); + break; } } |