Minor whitespace fix, so this doesn't look like a unary *.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78010 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-08-03 22:30:18 +00:00
parent 8bb9c92892
commit 5544c6cad8

View File

@ -431,7 +431,7 @@ public:
/// @brief Return the number of bits in the Vector type.
inline unsigned getBitWidth() const {
return NumElements *getElementType()->getPrimitiveSizeInBits();
return NumElements * getElementType()->getPrimitiveSizeInBits();
}
// Implement the AbstractTypeUser interface.