aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-08-14 19:41:50 +0000
committerOwen Anderson <resistor@mac.com>2009-08-14 19:41:50 +0000
commit5ee3ba2f9ed3eb1e1dc29b3406e235f4e1e40969 (patch)
tree3ce373e15de647ff6187ee3cee937ff76d044f57 /include
parent59bc0604e5283d4f57d074a99891e6b744b4d333 (diff)
Add doxygen comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79027 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/IRBuilder.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h
index cf6f337338..9979b8d03d 100644
--- a/include/llvm/Support/IRBuilder.h
+++ b/include/llvm/Support/IRBuilder.h
@@ -127,34 +127,42 @@ public:
// Type creation methods
//===--------------------------------------------------------------------===//
+ /// getInt1Ty - Fetch the type representing a single bit
const Type *getInt1Ty() {
return Type::getInt1Ty(Context);
}
+ /// getInt8Ty - Fetch the type representing an 8-bit integer.
const Type *getInt8Ty() {
return Type::getInt8Ty(Context);
}
+ /// getInt16Ty - Fetch the type representing a 16-bit integer.
const Type *getInt16Ty() {
return Type::getInt16Ty(Context);
}
+ /// getInt32Ty - Fetch the type resepresenting a 32-bit integer.
const Type *getInt32Ty() {
return Type::getInt32Ty(Context);
}
+ /// getInt64Ty - Fetch the type representing a 64-bit integer.
const Type *getInt64Ty() {
return Type::getInt64Ty(Context);
}
+ /// getFloatTy - Fetch the type representing a 32-bit floating point value.
const Type *getFloatTy() {
return Type::getFloatTy(Context);
}
+ /// getDoubleTy - Fetch the type representing a 64-bit floating point value.
const Type *getDoubleTy() {
return Type::getDoubleTy(Context);
}
+ /// getVoidTy - Fetch the type representing void.
const Type *getVoidTy() {
return Type::getVoidTy(Context);
}