mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
now that we can pass ranges into CallInst ctors, eliminate vector heap traffic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34229 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
133bab0606
commit
d0e44c2e05
@ -669,7 +669,7 @@ void BytecodeReader::ParseInstruction(SmallVector<unsigned, 8> &Oprnds,
|
||||
const FunctionType *FTy = dyn_cast<FunctionType>(PTy->getElementType());
|
||||
if (FTy == 0) error("Call to non function pointer value!");
|
||||
|
||||
std::vector<Value *> Params;
|
||||
SmallVector<Value *, 8> Params;
|
||||
if (!FTy->isVarArg()) {
|
||||
FunctionType::param_iterator It = FTy->param_begin();
|
||||
|
||||
@ -720,7 +720,7 @@ void BytecodeReader::ParseInstruction(SmallVector<unsigned, 8> &Oprnds,
|
||||
if (FTy == 0)
|
||||
error("Invoke to non function pointer value!");
|
||||
|
||||
std::vector<Value *> Params;
|
||||
SmallVector<Value *, 8> Params;
|
||||
BasicBlock *Normal, *Except;
|
||||
unsigned CallingConv = Oprnds.back();
|
||||
Oprnds.pop_back();
|
||||
|
Loading…
x
Reference in New Issue
Block a user