From 9fc3d0dfdc794c2514eaf710f5959f1bdf1073ba Mon Sep 17 00:00:00 2001 From: Amjad Aboud Date: Sun, 26 Jun 2016 13:36:23 +0000 Subject: Fixed build failure (due to unused variable error) in r273807. llvm-svn: 273810 --- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp') diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp index cb834f5..46917f8 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp @@ -956,6 +956,7 @@ TypeIndex CodeViewDebug::lowerTypeArray(const DICompositeType *Ty) { ArrayRecord(ElementTypeIndex, IndexType, ElementSize, Name)); } + (void)UndefinedSubrange; assert(UndefinedSubrange || ElementSize == (Ty->getSizeInBits() / 8)); return ElementTypeIndex; -- cgit v1.1