Removing SET_RETURN_ADDRESS - hopefully it'll never be needed again.

This commit is contained in:
Ben Vanik
2014-01-26 01:18:59 -08:00
parent 8789fd4134
commit ecf0988ddb
20 changed files with 81 additions and 83 deletions

View File

@@ -49,7 +49,7 @@ int alloy_sandbox(int argc, xechar_t** argv) {
ctx->lr = 0xBEBEBEBE;
ctx->r[5] = 10;
ctx->r[25] = 25;
fn->Call(thread_state, 0xBEBEBEBE);
fn->Call(thread_state);
auto result = ctx->r[11];
delete thread_state;