mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fix unused variable in FunctionLoweringInfo.cpp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202932 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2f471c83a0
commit
a9b2552fd9
@ -118,7 +118,7 @@ void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf,
|
||||
// Look for inline asm that clobbers the SP register.
|
||||
if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
|
||||
ImmutableCallSite CS(I);
|
||||
if (const InlineAsm *IA = dyn_cast<InlineAsm>(CS.getCalledValue())) {
|
||||
if (isa<InlineAsm>(CS.getCalledValue())) {
|
||||
unsigned SP = TLI->getStackPointerRegisterToSaveRestore();
|
||||
std::vector<TargetLowering::AsmOperandInfo> Ops =
|
||||
TLI->ParseConstraints(CS);
|
||||
|
Loading…
Reference in New Issue
Block a user