diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-03 22:30:18 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-03 22:30:18 +0000 |
commit | 5544c6cad8e0fc8da731edbc17996e97d91831d1 (patch) | |
tree | 56f7fb80b7770cc4ebfd35a2f655ec1f95b81db5 /include/llvm/DerivedTypes.h | |
parent | 8bb9c928925c3a1713a90005fcf5aa6c643d1120 (diff) |
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
Diffstat (limited to 'include/llvm/DerivedTypes.h')
-rw-r--r-- | include/llvm/DerivedTypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h index 053091b86f..e2737bd3c7 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. |