OSDN Git Service
(root)
/
android-x86
/
external-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10ac377
)
eliminate vector-related ctors
author
Chris Lattner
<sabre@nondot.org>
Tue, 13 Feb 2007 06:06:26 +0000
(06:06 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 13 Feb 2007 06:06:26 +0000
(06:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34227
91177308
-0d34-0410-b5e6-
96231b3b80d8
examples/HowToUseJIT/HowToUseJIT.cpp
patch
|
blob
|
history
diff --git
a/examples/HowToUseJIT/HowToUseJIT.cpp
b/examples/HowToUseJIT/HowToUseJIT.cpp
index
4709562
..
8948b3a
100644
(file)
--- a/
examples/HowToUseJIT/HowToUseJIT.cpp
+++ b/
examples/HowToUseJIT/HowToUseJIT.cpp
@@
-89,9
+89,7
@@
int main() {
Value *Ten = ConstantInt::get(Type::Int32Ty, 10);
// Pass Ten to the call call:
- std::vector<Value*> Params;
- Params.push_back(Ten);
- CallInst *Add1CallRes = new CallInst(Add1F, Params, "add1", BB);
+ CallInst *Add1CallRes = new CallInst(Add1F, Ten, "add1", BB);
Add1CallRes->setTailCall(true);
// Create the return instruction and add it to the basic block.