mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
Stylistic change.
llvm-svn: 58683
This commit is contained in:
parent
0369860450
commit
f15a9cfb31
@ -111,7 +111,7 @@ extern "C" void ARMCompilationCallbackC(intptr_t StubAddr) {
|
|||||||
// stub with:
|
// stub with:
|
||||||
// ldr pc, [pc,#-4]
|
// ldr pc, [pc,#-4]
|
||||||
// <addr>
|
// <addr>
|
||||||
bool ok = sys::Memory::setRangeWritable ((void*)StubAddr, 8);
|
bool ok = sys::Memory::setRangeWritable((void*)StubAddr, 8);
|
||||||
if (!ok)
|
if (!ok)
|
||||||
{
|
{
|
||||||
cerr << "ERROR: Unable to mark stub writable\n";
|
cerr << "ERROR: Unable to mark stub writable\n";
|
||||||
@ -119,7 +119,7 @@ extern "C" void ARMCompilationCallbackC(intptr_t StubAddr) {
|
|||||||
}
|
}
|
||||||
*(intptr_t *)StubAddr = 0xe51ff004;
|
*(intptr_t *)StubAddr = 0xe51ff004;
|
||||||
*(intptr_t *)(StubAddr+4) = NewVal;
|
*(intptr_t *)(StubAddr+4) = NewVal;
|
||||||
ok = sys::Memory::setRangeExecutable ((void*)StubAddr, 8);
|
ok = sys::Memory::setRangeExecutable((void*)StubAddr, 8);
|
||||||
if (!ok)
|
if (!ok)
|
||||||
{
|
{
|
||||||
cerr << "ERROR: Unable to mark stub executable\n";
|
cerr << "ERROR: Unable to mark stub executable\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user