mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-18 09:27:27 +00:00
1. Handle removal of all arguments for a morphed intrinsic.
2. Remove the declaration of llvm.dbg.declare. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26745 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ea6f8ce2a3
commit
5a588a9636
@ -97,6 +97,9 @@ static Function *getUpgradedIntrinsic(Function *F) {
|
||||
if (F->getReturnType() != Type::VoidTy) {
|
||||
return M->getOrInsertFunction(Name, Type::VoidTy, NULL);
|
||||
}
|
||||
} else if (Name == "llvm.dbg.declare") {
|
||||
F->setName("");
|
||||
return NULL;
|
||||
}
|
||||
break;
|
||||
case 'i':
|
||||
@ -230,7 +233,7 @@ void llvm::UpgradeIntrinsicCall(CallInst *CI, Function *NewFn) {
|
||||
} else
|
||||
Oprnds.push_back(UndefValue::get(NewFnTy->getParamType(i)));
|
||||
}
|
||||
} else {
|
||||
} else if (N) {
|
||||
assert(N == (CI->getNumOperands() - 1) &&
|
||||
"Upgraded function needs permutation");
|
||||
for (unsigned i = 0; i != N; ++i) {
|
||||
|
Loading…
Reference in New Issue
Block a user