Changeset 34396 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Jun 5, 2008, 6:00:16 PM (17 years ago)
Author:
Antti Koivisto
Message:

2008-06-05 Antti Koivisto <Antti Koivisto>

Reviewed by Alp Toker.


Fix whitespaces.

  • kjs/collector.cpp: (KJS::getPlatformThreadRegisters):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/collector.cpp

    r34395 r34396  
    592592#if PLATFORM(DARWIN)
    593593
    594 #if     PLATFORM(X86)
     594#if PLATFORM(X86)
    595595typedef i386_thread_state_t PlatformThreadRegisters;
    596 #elif   PLATFORM(X86_64)
     596#elif PLATFORM(X86_64)
    597597typedef x86_thread_state64_t PlatformThreadRegisters;
    598 #elif   PLATFORM(PPC)
     598#elif PLATFORM(PPC)
    599599typedef ppc_thread_state_t PlatformThreadRegisters;
    600 #elif   PLATFORM(PPC64)
     600#elif PLATFORM(PPC64)
    601601typedef ppc_thread_state64_t PlatformThreadRegisters;
    602 #elif   PLATFORM(ARM)
     602#elif PLATFORM(ARM)
    603603typedef arm_thread_state_t PlatformThreadRegisters;
    604604#else
     
    616616#if PLATFORM(DARWIN)
    617617
    618 #if     PLATFORM(X86)
     618#if PLATFORM(X86)
    619619    unsigned user_count = sizeof(regs)/sizeof(int);
    620620    thread_state_flavor_t flavor = i386_THREAD_STATE;
    621 #elif   PLATFORM(X86_64)
     621#elif PLATFORM(X86_64)
    622622    unsigned user_count = x86_THREAD_STATE64_COUNT;
    623623    thread_state_flavor_t flavor = x86_THREAD_STATE64;
    624 #elif   PLATFORM(PPC)
     624#elif PLATFORM(PPC)
    625625    unsigned user_count = PPC_THREAD_STATE_COUNT;
    626626    thread_state_flavor_t flavor = PPC_THREAD_STATE;
    627 #elif   PLATFORM(PPC64)
     627#elif PLATFORM(PPC64)
    628628    unsigned user_count = PPC_THREAD_STATE64_COUNT;
    629629    thread_state_flavor_t flavor = PPC_THREAD_STATE64;
    630 #elif   PLATFORM(ARM)
     630#elif PLATFORM(ARM)
    631631    unsigned user_count = ARM_THREAD_STATE_COUNT;
    632632    thread_state_flavor_t flavor = ARM_THREAD_STATE;
Note: See TracChangeset for help on using the changeset viewer.