From: Dan Gohman Date: Mon, 3 Aug 2009 22:30:18 +0000 (+0000) Subject: Minor whitespace fix, so this doesn't look like a unary *. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5544c6cad8e0fc8da731edbc17996e97d91831d1;p=oota-llvm.git 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 --- 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.