mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-28 06:32:09 +00:00
Use the new interface, simplifies code
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8239 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0ae8e87e53
commit
5f07c877b3
@ -120,23 +120,18 @@ void ExternalFuncs::doInitialization(Module &M) {
|
|||||||
PrintfFunc = M.getOrInsertFunction("printf", MTy);
|
PrintfFunc = M.getOrInsertFunction("printf", MTy);
|
||||||
|
|
||||||
// uint (sbyte*)
|
// uint (sbyte*)
|
||||||
const FunctionType *hashFuncTy =
|
HashPtrFunc = M.getOrInsertFunction("HashPointerToSeqNum", Type::UIntTy, SBP,
|
||||||
FunctionType::get(Type::UIntTy, vector<const Type*>(1, SBP), false);
|
0);
|
||||||
HashPtrFunc = M.getOrInsertFunction("HashPointerToSeqNum", hashFuncTy);
|
|
||||||
|
|
||||||
// void (sbyte*)
|
// void (sbyte*)
|
||||||
const FunctionType *voidSBPFuncTy =
|
ReleasePtrFunc = M.getOrInsertFunction("ReleasePointerSeqNum",
|
||||||
FunctionType::get(Type::VoidTy, vector<const Type*>(1, SBP), false);
|
Type::VoidTy, SBP, 0);
|
||||||
|
RecordPtrFunc = M.getOrInsertFunction("RecordPointer",
|
||||||
|
Type::VoidTy, SBP, 0);
|
||||||
|
|
||||||
ReleasePtrFunc = M.getOrInsertFunction("ReleasePointerSeqNum", voidSBPFuncTy);
|
PushOnEntryFunc = M.getOrInsertFunction("PushPointerSet", Type::VoidTy, 0);
|
||||||
RecordPtrFunc = M.getOrInsertFunction("RecordPointer", voidSBPFuncTy);
|
|
||||||
|
|
||||||
const FunctionType *voidvoidFuncTy =
|
|
||||||
FunctionType::get(Type::VoidTy, vector<const Type*>(), false);
|
|
||||||
|
|
||||||
PushOnEntryFunc = M.getOrInsertFunction("PushPointerSet", voidvoidFuncTy);
|
|
||||||
ReleaseOnReturnFunc = M.getOrInsertFunction("ReleasePointersPopSet",
|
ReleaseOnReturnFunc = M.getOrInsertFunction("ReleasePointersPopSet",
|
||||||
voidvoidFuncTy);
|
Type::VoidTy, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user