1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-30 20:34:21 +00:00

Add helpers for fetching basic types.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78969 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson 2009-08-14 00:30:41 +00:00
parent 1135a232eb
commit 0668dc7955

@ -123,6 +123,42 @@ public:
I->setName(Name);
}
//===--------------------------------------------------------------------===//
// Type creation methods
//===--------------------------------------------------------------------===//
const Type *getInt1Ty() {
return Type::getInt1Ty(Context);
}
const Type *getInt8Ty() {
return Type::getInt8Ty(Context);
}
const Type *getInt16Ty() {
return Type::getInt16Ty(Context);
}
const Type *getInt32Ty() {
return Type::getInt32Ty(Context);
}
const Type *getInt64Ty() {
return Type::getInt64Ty(Context);
}
const Type *getFloatTy() {
return Type::getFloatTy(Context);
}
const Type *getDoubleTy() {
return Type::getDoubleTy(Context);
}
const Type *getVoidTy() {
return Type::getVoidTy(Context);
}
//===--------------------------------------------------------------------===//
// Instruction creation methods: Terminators
//===--------------------------------------------------------------------===//