mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
minor refactoring: use a more specific API
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62256 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
94bd57e154
commit
b67e6b3b65
@ -1490,10 +1490,11 @@ void SelectionDAGLowering::visitInvoke(InvokeInst &I) {
|
||||
MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)];
|
||||
MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)];
|
||||
|
||||
if (isa<InlineAsm>(I.getCalledValue()))
|
||||
const Value *Callee(I.getCalledValue());
|
||||
if (isa<InlineAsm>(Callee))
|
||||
visitInlineAsm(&I);
|
||||
else
|
||||
LowerCallTo(&I, getValue(I.getOperand(0)), false, LandingPad);
|
||||
LowerCallTo(&I, getValue(Callee), false, LandingPad);
|
||||
|
||||
// If the value of the invoke is used outside of its defining block, make it
|
||||
// available as a virtual register.
|
||||
|
Loading…
x
Reference in New Issue
Block a user