Changeset 48217 in webkit for trunk/JavaScriptCore/jit


Ignore:
Timestamp:
Sep 9, 2009, 11:09:29 AM (16 years ago)
Author:
Laszlo Gombos
Message:

2009-09-09 Laszlo Gombos <Laszlo Gombos>

Reviewed by Darin Adler.

Change reinterpret_cast to static_cast in r48212.

  • jit/ExecutableAllocator.h: (JSC::ExecutableAllocator::cacheFlush):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/ExecutableAllocator.h

    r48212 r48217  
    190190    static void cacheFlush(void* code, size_t size)
    191191    {
    192         User::IMB_Range(code, reinterpret_cast<char*>(code) + size);
     192        User::IMB_Range(code, static_cast<char*>(code) + size);
    193193    }
    194194#elif PLATFORM(ARM)
Note: See TracChangeset for help on using the changeset viewer.