diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index d185e00d87c..675ef479d11 100644 --- a/lib/ExecutionEngine/JIT/JIT.cpp +++ b/lib/ExecutionEngine/JIT/JIT.cpp @@ -77,8 +77,7 @@ GenericValue JIT::runFunction(Function *F, if (RetTy == Type::IntTy || RetTy == Type::UIntTy || RetTy == Type::VoidTy) { switch (ArgValues.size()) { case 3: - if (FTy->getNumParams() == 3 && - (FTy->getParamType(0) == Type::IntTy || + if ((FTy->getParamType(0) == Type::IntTy || FTy->getParamType(0) == Type::UIntTy) && isa(FTy->getParamType(1)) && isa(FTy->getParamType(2))) { @@ -92,6 +91,18 @@ GenericValue JIT::runFunction(Function *F, return rv; } break; + case 2: + if ((FTy->getParamType(0) == Type::IntTy || + FTy->getParamType(0) == Type::UIntTy) && + isa(FTy->getParamType(1))) { + int (*PF)(int, char **) = (int(*)(int, char **))FPtr; + + // Call the function. + GenericValue rv; + rv.IntVal = PF(ArgValues[0].IntVal, (char **)GVTOP(ArgValues[1])); + return rv; + } + break; case 1: if (FTy->getNumParams() == 1 && (FTy->getParamType(0) == Type::IntTy ||