[llvm-commits] [llvm] r78010 - /llvm/trunk/include/llvm/DerivedTypes.h
Dan Gohman
gohman at apple.com
Mon Aug 3 15:30:19 PDT 2009
Author: djg
Date: Mon Aug 3 17:30:18 2009
New Revision: 78010
URL: http://llvm.org/viewvc/llvm-project?rev=78010&view=rev
Log:
Minor whitespace fix, so this doesn't look like a unary *.
Modified:
llvm/trunk/include/llvm/DerivedTypes.h
Modified: llvm/trunk/include/llvm/DerivedTypes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DerivedTypes.h?rev=78010&r1=78009&r2=78010&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DerivedTypes.h (original)
+++ llvm/trunk/include/llvm/DerivedTypes.h Mon Aug 3 17:30:18 2009
@@ -431,7 +431,7 @@
/// @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.
More information about the llvm-commits
mailing list