mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-03 16:41:06 +03:00
Remove some logging I didn't mean to commit.
This commit is contained in:
parent
21f273671a
commit
0e8216fbd6
1 changed files with 1 additions and 5 deletions
|
@ -171,10 +171,6 @@ const llvm::FunctionType* DtoFunctionType(Type* type, Type* thistype, Type* nest
|
|||
// If the function type was forward referenced by one of the parameter types,
|
||||
// it has now been set.
|
||||
if (f->ir.type) {
|
||||
for (size_t i = 0; i < fty.args.size(); i++) {
|
||||
Logger::cout() << "Arg type: " << *fty.args[i]->ltype << '\n';
|
||||
}
|
||||
|
||||
// Notify ABI that we won't be needing it for this function type anymore.
|
||||
gABI->doneWithFunctionType();
|
||||
|
||||
|
@ -189,7 +185,7 @@ const llvm::FunctionType* DtoFunctionType(Type* type, Type* thistype, Type* nest
|
|||
delete *It;
|
||||
}
|
||||
|
||||
Logger::cout() << "Function type: " << **f->ir.type << '\n';
|
||||
Logger::cout() << "Final function type: " << **f->ir.type << '\n';
|
||||
return llvm::cast<LLFunctionType>(*f->ir.type);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue