I see the following code, which works for 32 bit but not 64 bit. Is 
there another file or function somewhere that's for 64 bit?

    static bool isNegative(const JSValue* v)
    {
        ASSERT(isNumber(v));
        return reinterpret_cast<uintptr_t>(v) & 0x80000000;
    }



_______________________________________________
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Reply via email to