summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMJITInfo.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-11-04 06:10:06 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-11-04 06:10:06 +0000
commite953b89b0d7ef8ecb681dab3bea0db81e41c3cf9 (patch)
tree25d0898b9bdd39f24a8af26431814a9c902fe2d4 /lib/Target/ARM/ARMJITInfo.cpp
parentafc0e0ac1cda676eb7634a03f2ce64f5d1fca31e (diff)
downloadllvm-e953b89b0d7ef8ecb681dab3bea0db81e41c3cf9.tar.gz
llvm-e953b89b0d7ef8ecb681dab3bea0db81e41c3cf9.tar.bz2
llvm-e953b89b0d7ef8ecb681dab3bea0db81e41c3cf9.tar.xz
Stylistic change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58683 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMJITInfo.cpp')
-rw-r--r--lib/Target/ARM/ARMJITInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMJITInfo.cpp b/lib/Target/ARM/ARMJITInfo.cpp
index 2f04d0b4e8..c57477baf4 100644
--- a/lib/Target/ARM/ARMJITInfo.cpp
+++ b/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";