aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/masm/stubs/Options.h
blob: 0f742fb6d21818d772e7d25b9374fcb9d681f460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef OPTIONS_H
#define OPTIONS_H

namespace JSC {

struct Options {
    static bool showDisassembly();
    static bool showDFGDisassembly() { return true; }
    static bool zeroStackFrame() { return true; }
    static bool dumpCompiledRegExpPatterns() { return false; }
};

}

#endif // MASM_STUBS/OPTIONS_H