[CodeView] Remove superfluous bitmath

llvm-svn: 271495
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
index 7c167ba..a8d4646 100644
--- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
@@ -766,7 +766,7 @@
   uint32_t ByteSize;
 
   Kind = static_cast<dwarf::TypeKind>(Ty->getEncoding());
-  ByteSize = Ty->getSizeInBits() >> 3;
+  ByteSize = Ty->getSizeInBits() / 8;
 
   SimpleTypeKind STK = SimpleTypeKind::None;
   switch (Kind) {