mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-12 23:37:33 +00:00
[RewriteStatepointsForGC] Avoid inserting empty holder
We use dummy calls to adjust the liveness of values over statepoints in the midst of the insertion. If there are no values which need held live, there's no point in actually inserting the holder. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234779 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8ca57e685e
commit
7bea98826a
@ -1571,6 +1571,10 @@ static Function *getUseHolder(Module &M) {
|
||||
/// liftetime of the call.
|
||||
static void insertUseHolderAfter(CallSite &CS, const ArrayRef<Value *> Values,
|
||||
SmallVectorImpl<CallInst *> &holders) {
|
||||
if (Values.empty())
|
||||
// No values to hold live, might as well not insert the empty holder
|
||||
return;
|
||||
|
||||
Module *M = CS.getInstruction()->getParent()->getParent()->getParent();
|
||||
Function *Func = getUseHolder(*M);
|
||||
if (CS.isCall()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user