Minor whitespace fix, so this doesn't look like a unary *.
authorDan Gohman <gohman@apple.com>
Mon, 3 Aug 2009 22:30:18 +0000 (22:30 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 3 Aug 2009 22:30:18 +0000 (22:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78010 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/DerivedTypes.h

index 053091b86fe16be30787c410c56ed2de53538666..e2737bd3c7c60cd573c552ba8a6dff732b0cf7ce 100644 (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.