diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-11-04 06:10:06 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-11-04 06:10:06 +0000 |
commit | 2299c99d79fe23c0c5099bc945717f64a9a3a541 (patch) | |
tree | 0d7f8f542ab4fc91d576e7c4ca015907bf61dfbc /llvm/lib/Target/ARM/ARMJITInfo.cpp | |
parent | c1d10e6b4245fdefb18f07485d295d8ecb65068d (diff) | |
download | bcm5719-llvm-2299c99d79fe23c0c5099bc945717f64a9a3a541.tar.gz bcm5719-llvm-2299c99d79fe23c0c5099bc945717f64a9a3a541.zip |
Stylistic change.
llvm-svn: 58683
Diffstat (limited to 'llvm/lib/Target/ARM/ARMJITInfo.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMJITInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMJITInfo.cpp b/llvm/lib/Target/ARM/ARMJITInfo.cpp index 2f04d0b4e8a..c57477baf4d 100644 --- a/llvm/lib/Target/ARM/ARMJITInfo.cpp +++ b/llvm/lib/Target/ARM/ARMJITInfo.cpp @@ -111,7 +111,7 @@ extern "C" void ARMCompilationCallbackC(intptr_t StubAddr) { // stub with: // ldr pc, [pc,#-4] // <addr> - bool ok = sys::Memory::setRangeWritable ((void*)StubAddr, 8); + bool ok = sys::Memory::setRangeWritable((void*)StubAddr, 8); if (!ok) { 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+4) = NewVal; - ok = sys::Memory::setRangeExecutable ((void*)StubAddr, 8); + ok = sys::Memory::setRangeExecutable((void*)StubAddr, 8); if (!ok) { cerr << "ERROR: Unable to mark stub executable\n"; |