Stylistic change.
authorEvan Cheng <evan.cheng@apple.com>
Tue, 4 Nov 2008 06:10:06 +0000 (06:10 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Tue, 4 Nov 2008 06:10:06 +0000 (06:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58683 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMJITInfo.cpp

index 2f04d0b4e8ada77a1e308f89490f4e91f6a5c906..c57477baf4d72c11ac248447c3a29df96b5776a5 100644 (file)
@@ -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";