diff options
author | Justin Bogner <mail@justinbogner.com> | 2016-08-05 21:57:10 +0000 |
---|---|---|
committer | Justin Bogner <mail@justinbogner.com> | 2016-08-05 21:57:10 +0000 |
commit | 272cbacc25beec921298db499ec12a11ac584fcb (patch) | |
tree | 3ea76770fee7f43176014e68274f19afc6de5022 | |
parent | 4c65c3596a6339ef075c9edea2827562ef0cba9d (diff) | |
download | bcm5719-llvm-272cbacc25beec921298db499ec12a11ac584fcb.tar.gz bcm5719-llvm-272cbacc25beec921298db499ec12a11ac584fcb.zip |
CodeView: Remove an unused variable
It was breaking the -Werror build.
llvm-svn: 277878
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp b/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp index a302505667d..1b96b0cb947 100644 --- a/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp +++ b/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp @@ -29,7 +29,6 @@ static Error visitKnownRecord(const CVRecord<TypeLeafKind> &Record, } Error CVTypeVisitor::visitTypeRecord(const CVRecord<TypeLeafKind> &Record) { - ArrayRef<uint8_t> LeafData = Record.Data; if (auto EC = Callbacks.visitTypeBegin(Record)) return EC; |