================ @@ -487,14 +490,15 @@ def Main(): if bugs_metadata == "DILocation": try: + origin = bug["origin"] action = bug["action"] bb_name = bug["bb-name"] fn_name = bug["fn-name"] instr = bug["instr"] except: skipped_bugs += 1 continue - di_loc_bug = DILocBug(action, bb_name, fn_name, instr) + di_loc_bug = DILocBug(origin, action, bb_name, fn_name, instr) ---------------- jryans wrote:
Maybe move `origin` to the end, which also seems to match the order where its used? https://github.com/llvm/llvm-project/pull/107369 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits