Every line of 'remove function in python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
24 def remove_sfunc(bblock, name): 25 for i, inst in enumerate(bblock.items): 26 if inst.op == "SFUNC" and inst.args[0].args[0].name == name: 27 dead = Inst(None, "DEAD", []) 28 dead.addr = inst.addr 29 bblock.items[i] = dead 30 bblock.items[i].comments["org_inst"] = inst