Add support for an i8* type accessor.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97841 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2010-03-05 22:21:58 +00:00
parent 53e000bac3
commit e2381787aa

View File

@ -143,6 +143,10 @@ public:
return Type::getVoidTy(Context);
}
const Type *getInt8PtrTy() {
return Type::getInt8PtrTy(Context);
}
/// getCurrentFunctionReturnType - Get the return type of the current function
/// that we're emitting into.
const Type *getCurrentFunctionReturnType() const;