Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- sparse-llvm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sparse-llvm.c b/sparse-llvm.c index 824bd790e..e35ac01a2 100644 --- a/sparse-llvm.c +++ b/sparse-llvm.c @@ -306,7 +306,7 @@ static void pseudo_name(pseudo_t pseudo, char *buf) } } -static LLVMValueRef val_to_value(struct function *fn, unsigned long long val, struct symbol *ctype) +static LLVMValueRef val_to_value(unsigned long long val, struct symbol *ctype) { LLVMTypeRef dtype; LLVMTypeRef itype; @@ -387,7 +387,7 @@ static LLVMValueRef pseudo_to_value(struct function *fn, struct instruction *ins break; } case PSEUDO_VAL: - result = val_to_value(fn, pseudo->value, insn->type); + result = val_to_value(pseudo->value, insn->type); break; case PSEUDO_ARG: { result = LLVMGetParam(fn->fn, pseudo->nr - 1); @@ -774,7 +774,7 @@ static void output_op_call(struct function *fn, struct instruction *insn) atype = get_nth_symbol(ftype->arguments, i); /* Value pseudos do not have type information. */ /* Use the function prototype to get the type. */ - value = val_to_value(fn, arg->value, atype); + value = val_to_value(arg->value, atype); } else { value = pseudo_to_value(fn, insn, arg); } -- 2.11.1 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html