interface/a32: Remove descriptor argument from Disassemble

This commit is contained in:
MerryMage 2020-06-12 15:27:42 +01:00
parent 3ccc415c52
commit 2796a85096
4 changed files with 7 additions and 13 deletions

View file

@ -12,12 +12,6 @@
#include <dynarmic/A32/config.h>
namespace Dynarmic {
namespace IR {
class LocationDescriptor;
}
}
namespace Dynarmic {
namespace A32 {
@ -92,10 +86,10 @@ public:
}
/**
* @param descriptor Basic block descriptor.
* @return A string containing disassembly of the host machine code produced for the basic block.
* Debugging: Disassemble all of compiled code.
* @return A string containing disassembly of all host machine code produced.
*/
std::string Disassemble(const IR::LocationDescriptor& descriptor);
std::string Disassemble() const;
private:
bool is_executing = false;