Ignore:
Timestamp:
Jan 12, 2010, 11:42:07 AM (15 years ago)
Author:
[email protected]
Message:

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=33540
Make it possible to build in debug mode with assertions disabled

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/JITStubs.cpp

    r52970 r53151  
    16231623    STUB_INIT_STACK_FRAME(stackFrame);
    16241624
    1625 #ifndef NDEBUG
     1625#if !ASSERT_DISABLED
    16261626    CallData callData;
    16271627    ASSERT(stackFrame.args[0].jsValue().getCallData(callData) == CallTypeJS);
     
    18721872    }
    18731873
    1874 #ifndef NDEBUG
     1874#if !ASSERT_DISABLED
    18751875    ConstructData constructData;
    18761876    ASSERT(constructor->getConstructData(constructData) == ConstructTypeJS);
Note: See TracChangeset for help on using the changeset viewer.