Commit 68482dbc authored by mmaly@chromium.org's avatar mmaly@chromium.org

Fix arm and x64 build break.

BUG=
TEST=

Review URL: http://codereview.chromium.org/6808001

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7523 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 76b5dc7b
...@@ -137,7 +137,7 @@ class LCodeGen BASE_EMBEDDED { ...@@ -137,7 +137,7 @@ class LCodeGen BASE_EMBEDDED {
bool is_aborted() const { return status_ == ABORTED; } bool is_aborted() const { return status_ == ABORTED; }
int strict_mode_flag() const { int strict_mode_flag() const {
return info()->is_strict() ? kStrictMode : kNonStrictMode; return info()->is_strict_mode() ? kStrictMode : kNonStrictMode;
} }
LChunk* chunk() const { return chunk_; } LChunk* chunk() const { return chunk_; }
......
...@@ -124,7 +124,7 @@ class LCodeGen BASE_EMBEDDED { ...@@ -124,7 +124,7 @@ class LCodeGen BASE_EMBEDDED {
bool is_aborted() const { return status_ == ABORTED; } bool is_aborted() const { return status_ == ABORTED; }
int strict_mode_flag() const { int strict_mode_flag() const {
return info()->is_strict() ? kStrictMode : kNonStrictMode; return info()->is_strict_mode() ? kStrictMode : kNonStrictMode;
} }
LChunk* chunk() const { return chunk_; } LChunk* chunk() const { return chunk_; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment