diff options
Diffstat (limited to 'lib/AST/VTableBuilder.cpp')
| -rw-r--r-- | lib/AST/VTableBuilder.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/lib/AST/VTableBuilder.cpp b/lib/AST/VTableBuilder.cpp index 104530fc1305..33dad40c0c50 100644 --- a/lib/AST/VTableBuilder.cpp +++ b/lib/AST/VTableBuilder.cpp @@ -1891,6 +1891,9 @@ void VTableBuilder::dumpLayout(raw_ostream& Out) {        if (MD->isPure())          Out << " [pure]"; +      if (MD->isDeleted()) +        Out << " [deleted]"; +        ThunkInfo Thunk = VTableThunks.lookup(I);        if (!Thunk.isEmpty()) {          // If this function pointer has a return adjustment, dump it. | 
