diff options
author | Nilanjana Basu <nilanjana.basu87@gmail.com> | 2019-08-25 01:09:11 +0000 |
---|---|---|
committer | Nilanjana Basu <nilanjana.basu87@gmail.com> | 2019-08-25 01:09:11 +0000 |
commit | 7da6f432d8bcaeacb87e5d9c2d950d6674a45df9 (patch) | |
tree | a82464d90a5493278c4412b3a165121c7e567856 /llvm/lib/DebugInfo | |
parent | cc4b0596b1b0e58672e4151396c7b804eccaf273 (diff) | |
download | bcm5719-llvm-7da6f432d8bcaeacb87e5d9c2d950d6674a45df9.tar.gz bcm5719-llvm-7da6f432d8bcaeacb87e5d9c2d950d6674a45df9.zip |
Removing block comments from CodeView records in assembly files & related code cleanup
llvm-svn: 369860
Diffstat (limited to 'llvm/lib/DebugInfo')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp b/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp index ec4773d571c..dd6f75f97a4 100644 --- a/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp +++ b/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp @@ -209,14 +209,6 @@ struct VisitHelper { } } - VisitHelper(TypeVisitorCallbackPipeline &Callbacks, VisitorDataSource Source) - : Visitor((Source == VDS_BytesPresent) ? Pipeline : Callbacks) { - if (Source == VDS_BytesPresent) { - Pipeline = Callbacks; - Pipeline.addCallbackToPipelineFront(Deserializer); - } - } - TypeDeserializer Deserializer; TypeVisitorCallbackPipeline Pipeline; CVTypeVisitor Visitor; @@ -230,13 +222,6 @@ Error llvm::codeview::visitTypeRecord(CVType &Record, TypeIndex Index, return V.Visitor.visitTypeRecord(Record, Index); } -Error llvm::codeview::visitTypeRecord(CVType &Record, TypeIndex Index, - TypeVisitorCallbackPipeline &Callbacks, - VisitorDataSource Source) { - VisitHelper V(Callbacks, Source); - return V.Visitor.visitTypeRecord(Record, Index); -} - Error llvm::codeview::visitTypeRecord(CVType &Record, TypeVisitorCallbacks &Callbacks, VisitorDataSource Source) { |