Arguments, like all LLVMValues, are given a default name but these name are simply '%0', '%1', ... and are thus not very readable. Fix this by giving them an explicit name 'ARG1', ... to match the names used in sparse's linearized code. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- sparse-llvm.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sparse-llvm.c b/sparse-llvm.c index 23ae482e1..b9176e19d 100644 --- a/sparse-llvm.c +++ b/sparse-llvm.c @@ -955,6 +955,17 @@ static void output_fn(LLVMModuleRef module, struct entrypoint *ep) function.builder = LLVMCreateBuilder(); + /* give a name to each argument */ + for (int i = 0; i < nr_args; i++) { + char name[MAX_PSEUDO_NAME]; + LLVMValueRef arg; + + arg = LLVMGetParam(function.fn, i); + snprintf(name, sizeof(name), "ARG%d", i+1); + LLVMSetValueName(arg, name); + } + + /* create the BBs */ FOR_EACH_PTR(ep->bbs, bb) { static int nr_bb; LLVMBasicBlockRef bbr; -- 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