Remove unused variable; NFC
authorGeorge Burgess IV <george.burgess.iv@gmail.com>
Thu, 15 Mar 2018 02:58:36 +0000 (02:58 +0000)
committerGeorge Burgess IV <george.burgess.iv@gmail.com>
Thu, 15 Mar 2018 02:58:36 +0000 (02:58 +0000)
llvm-svn: 327597

llvm/lib/Transforms/Coroutines/CoroElide.cpp

index 42fd6d7..5935eae 100644 (file)
@@ -77,7 +77,6 @@ static bool operandReferences(CallInst *CI, AllocaInst *Frame, AAResults &AA) {
 // call implies that the function does not references anything on the stack.
 static void removeTailCallAttribute(AllocaInst *Frame, AAResults &AA) {
   Function &F = *Frame->getFunction();
-  MemoryLocation Mem(Frame);
   for (Instruction &I : instructions(F))
     if (auto *Call = dyn_cast<CallInst>(&I))
       if (Call->isTailCall() && operandReferences(Call, Frame, AA)) {