What data structures should be changed when removing a command from LLVM IR. Currently, I only use I-> eraseFromParent () for this. This gives me a StackDump error at the end.
Calling eraseFromParent is the right way to do this in accordance with the LLVM Programmer Manual . Did you replace using the instruction with something else before erasing it?
eraseFromParent
Source: https://habr.com/ru/post/1393944/More articles:How to run all my junit class tests at once - javaStop the application from working with the client - iphoneimport rules.csv file into sonar - sonarqubeRename multiple directories with one domain name to another domain name? - linuxHow to create an erratic timer EJB 3.1? - javaHowto requests nested resources using RESTkit for Objective-C - restHow to show Dialog in onCreate method? - androidHow to reference a static library using g ++ - c ++Writing a structure to NSMutableArray - arraysPython NoneType cannot be called when indexing in dict - pythonAll Articles