diff options
author | Amjad Aboud <amjad.aboud@intel.com> | 2016-06-26 13:36:23 +0000 |
---|---|---|
committer | Amjad Aboud <amjad.aboud@intel.com> | 2016-06-26 13:36:23 +0000 |
commit | 9fc3d0dfdc794c2514eaf710f5959f1bdf1073ba (patch) | |
tree | 543e3ecf075ba6adaf918dd74dd25b390ab4bcb2 /llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | |
parent | ac97be64f0a67566b7c0e15455c14f851c884183 (diff) | |
download | bcm5719-llvm-9fc3d0dfdc794c2514eaf710f5959f1bdf1073ba.tar.gz bcm5719-llvm-9fc3d0dfdc794c2514eaf710f5959f1bdf1073ba.zip |
Fixed build failure (due to unused variable error) in r273807.
llvm-svn: 273810
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp index cb834f577b6..46917f8e82f 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; |