Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
CLoop buildfix after r164207
https://bugs.webkit.org/show_bug.cgi?id=128899

Patch by Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com> on 2014-02-17
Reviewed by Csaba Osztrogonác.

* dfg/DFGCommon.h:
(JSC::DFG::shouldShowDisassembly):

Canonical link: https://commits.webkit.org/146941@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@164216 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
dbatyai authored and webkit-commit-queue committed Feb 17, 2014
1 parent 6980a77 commit b3be20d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Source/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
2014-02-17 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>

CLoop buildfix after r164207
https://bugs.webkit.org/show_bug.cgi?id=128899

Reviewed by Csaba Osztrogonác.

* dfg/DFGCommon.h:
(JSC::DFG::shouldShowDisassembly):

2014-02-16 Filip Pizlo <fpizlo@apple.com>

Unreviewed, 32-bit build fix.
Expand Down
1 change: 1 addition & 0 deletions Source/JavaScriptCore/dfg/DFGCommon.h
Expand Up @@ -295,6 +295,7 @@ inline bool shouldShowDisassembly(CompilationMode mode = DFGMode)
#if ENABLE(DFG_JIT)
return Options::showDisassembly() || Options::showDFGDisassembly() || (isFTL(mode) && Options::showFTLDisassembly());
#else
UNUSED_PARAM(mode);
return false;
#endif
}
Expand Down

0 comments on commit b3be20d

Please sign in to comment.