diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-02-13 02:10:56 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-02-13 02:10:56 +0000 |
| commit | a06a8fd2d74963d410e652e4450e289123a699b4 (patch) | |
| tree | efad08528b5430e30bf72615fd0189d8a004902c /llvm/lib/Transforms/Utils/InlineFunction.cpp | |
| parent | 4d8861efaaf796acbad0dc9f33e1e064418cb6c5 (diff) | |
| download | bcm5719-llvm-a06a8fd2d74963d410e652e4450e289123a699b4.tar.gz bcm5719-llvm-a06a8fd2d74963d410e652e4450e289123a699b4.zip | |
Eliminate use of ctors that take vectors.
llvm-svn: 34219
Diffstat (limited to 'llvm/lib/Transforms/Utils/InlineFunction.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Utils/InlineFunction.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/InlineFunction.cpp b/llvm/lib/Transforms/Utils/InlineFunction.cpp index 054c1c77123..07194e38ad2 100644 --- a/llvm/lib/Transforms/Utils/InlineFunction.cpp +++ b/llvm/lib/Transforms/Utils/InlineFunction.cpp @@ -19,6 +19,7 @@ #include "llvm/Instructions.h" #include "llvm/Intrinsics.h" #include "llvm/Analysis/CallGraph.h" +#include "llvm/ADT/SmallVector.h" #include "llvm/Support/CallSite.h" using namespace llvm; @@ -80,9 +81,10 @@ static void HandleInlinedInvoke(InvokeInst *II, BasicBlock *FirstNewBlock, // Next, create the new invoke instruction, inserting it at the end // of the old basic block. + SmallVector<Value*, 8> InvokeArgs(CI->op_begin()+1, CI->op_end()); InvokeInst *II = new InvokeInst(CI->getCalledValue(), Split, InvokeDest, - std::vector<Value*>(CI->op_begin()+1, CI->op_end()), + &InvokeArgs[0], InvokeArgs.size(), CI->getName(), BB->getTerminator()); II->setCallingConv(CI->getCallingConv()); |

