Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- sparse-llvm.c | 1 + validation/backend/pointer-sub.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/sparse-llvm.c b/sparse-llvm.c index 421e29251..b0ecc1972 100644 --- a/sparse-llvm.c +++ b/sparse-llvm.c @@ -660,6 +660,7 @@ static void output_op_ret(struct function *fn, struct instruction *insn) if (pseudo && pseudo != VOID) { LLVMValueRef result = pseudo_to_value(fn, insn, pseudo); + result = adjust_type(fn, insn->type, result); LLVMBuildRet(fn->builder, result); } else LLVMBuildRetVoid(fn->builder); diff --git a/validation/backend/pointer-sub.c b/validation/backend/pointer-sub.c index 4017faf69..3cb8f5a9d 100644 --- a/validation/backend/pointer-sub.c +++ b/validation/backend/pointer-sub.c @@ -14,5 +14,4 @@ long subvx3(void *p, int a) { return (p - ((void*)0)) ^ 3; } /* * check-name: pointer-sub * check-command: sparsec -Wno-decl -c $file -o tmp.o - * check-known-to-fail */ -- 2.12.0 -- 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