mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
Push LLVMContexts through the IntegerType APIs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78948 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -32,7 +32,7 @@ namespace {
|
||||
bool runOnFunction(Function &F) {
|
||||
for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end();
|
||||
AI != AE; ++AI)
|
||||
if (!AI->hasName() && AI->getType() != Type::VoidTy)
|
||||
if (!AI->hasName() && AI->getType() != Type::getVoidTy(F.getContext()))
|
||||
AI->setName("tmp");
|
||||
|
||||
for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
|
||||
@ -40,7 +40,7 @@ namespace {
|
||||
BB->setName("BB");
|
||||
|
||||
for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
|
||||
if (!I->hasName() && I->getType() != Type::VoidTy)
|
||||
if (!I->hasName() && I->getType() != Type::getVoidTy(F.getContext()))
|
||||
I->setName("tmp");
|
||||
}
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user