From 5544c6cad8e0fc8da731edbc17996e97d91831d1 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 3 Aug 2009 22:30:18 +0000 Subject: [PATCH] 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 --- include/llvm/DerivedTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h index 053091b86fe..e2737bd3c7c 100644 --- a/include/llvm/DerivedTypes.h +++ b/include/llvm/DerivedTypes.h @@ -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. -- 2.34.1