[llvm-commits] CVS: llvm-java/lib/Compiler/VMMethod.cpp
Alkis Evlogimenos
alkis at cs.uiuc.edu
Tue Aug 23 17:25:11 PDT 2005
Changes in directory llvm-java/lib/Compiler:
VMMethod.cpp updated: 1.5 -> 1.6
---
Log message:
Changes to make this compile with LLVM current
---
Diffs of the changes: (+0 -1)
VMMethod.cpp | 1 -
1 files changed, 1 deletion(-)
Index: llvm-java/lib/Compiler/VMMethod.cpp
diff -u llvm-java/lib/Compiler/VMMethod.cpp:1.5 llvm-java/lib/Compiler/VMMethod.cpp:1.6
--- llvm-java/lib/Compiler/VMMethod.cpp:1.5 Fri Apr 22 19:12:14 2005
+++ llvm-java/lib/Compiler/VMMethod.cpp Tue Aug 23 19:24:58 2005
@@ -63,7 +63,6 @@
const Type* paramType = functionType->getParamType(i);
const Type* argType = paramType->getVAArgsPromotedType();
Value* arg = new VAArgInst(vaList, argType, "tmp", bb);
- vaList = new VANextInst(vaList, argType, "", bb);
if (paramType != argType)
arg = new CastInst(arg, paramType, "tmp", bb);
params.push_back(arg);
More information about the llvm-commits
mailing list