Changeset 57318 in webkit for trunk/JavaScriptCore/jsc.cpp


Ignore:
Timestamp:
Apr 9, 2010, 1:36:31 AM (15 years ago)
Author:
[email protected]
Message:

2010-04-09 Patrick Gansterer <[email protected]>

Reviewed by Darin Adler.

Implement NO_RETURN for COMPILER(MSVC).
https://bugs.webkit.org/show_bug.cgi?id=33056

Added NO_RETURN_WITH_VALUE for functions with non-void return type.

  • jsc.cpp:
  • wtf/AlwaysInline.h:
  • wtf/FastMalloc.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jsc.cpp

    r56560 r57318  
    8080static JSValue JSC_HOST_CALL functionCheckSyntax(ExecState*, JSObject*, JSValue, const ArgList&);
    8181static JSValue JSC_HOST_CALL functionReadline(ExecState*, JSObject*, JSValue, const ArgList&);
    82 static NO_RETURN JSValue JSC_HOST_CALL functionQuit(ExecState*, JSObject*, JSValue, const ArgList&);
     82static NO_RETURN_WITH_VALUE JSValue JSC_HOST_CALL functionQuit(ExecState*, JSObject*, JSValue, const ArgList&);
    8383
    8484#if ENABLE(SAMPLING_FLAGS)
Note: See TracChangeset for help on using the changeset viewer.