aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2007-05-17 21:30:39 +0000
committerDan Gohman <gohman@apple.com>2007-05-17 21:30:39 +0000
commite99d492a15c3aa068293964ec22be4190061784b (patch)
tree31c2c00c63a4861cd7cdc0de7863b0b93ea5b387
parent26b146ccf10979809a8bfe9c2d798f4b6fbf39de (diff)
Correct a name in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37178 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Type.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h
index f6d993db9b..d19bec2712 100644
--- a/include/llvm/Type.h
+++ b/include/llvm/Type.h
@@ -229,9 +229,10 @@ public:
return !isAbstract() || isSizedDerivedType();
}
- /// getPrimitiveSize - Return the basic size of this type if it is a primitive
- /// type. These are fixed by LLVM and are not target dependent. This will
- /// return zero if the type does not have a size or is not a primitive type.
+ /// getPrimitiveSizeInBits - Return the basic size of this type if it is a
+ /// primitive type. These are fixed by LLVM and are not target dependent.
+ /// This will return zero if the type does not have a size or is not a
+ /// primitive type.
///
unsigned getPrimitiveSizeInBits() const;