Reviewers: Lasse Reichstein,

Message:
Sorry about that, Lasse. I commited this TBR. This time I built all
architectures...

Thank you!
Martin

Description:
Fix arm and x64 build break.

[email protected]

BUG=
TEST=

Committed: http://code.google.com/p/v8/source/detail?r=7523

Please review this at http://codereview.chromium.org/6808001/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/arm/lithium-codegen-arm.h
  M src/x64/lithium-codegen-x64.h


Index: src/arm/lithium-codegen-arm.h
diff --git a/src/arm/lithium-codegen-arm.h b/src/arm/lithium-codegen-arm.h
index caa85d27489fc759565dce3a73b7c26bca33e75c..cfde7a83287363af324cd52d0030eaef66931455 100644
--- a/src/arm/lithium-codegen-arm.h
+++ b/src/arm/lithium-codegen-arm.h
@@ -137,7 +137,7 @@ class LCodeGen BASE_EMBEDDED {
   bool is_aborted() const { return status_ == ABORTED; }

   int strict_mode_flag() const {
-    return info()->is_strict() ? kStrictMode : kNonStrictMode;
+    return info()->is_strict_mode() ? kStrictMode : kNonStrictMode;
   }

   LChunk* chunk() const { return chunk_; }
Index: src/x64/lithium-codegen-x64.h
diff --git a/src/x64/lithium-codegen-x64.h b/src/x64/lithium-codegen-x64.h
index f44fdb95107f4e7881a9104caf6fc35f8ae87cf6..70ff63c4334e209e5e9c5f3370f32ed46542c68b 100644
--- a/src/x64/lithium-codegen-x64.h
+++ b/src/x64/lithium-codegen-x64.h
@@ -124,7 +124,7 @@ class LCodeGen BASE_EMBEDDED {
   bool is_aborted() const { return status_ == ABORTED; }

   int strict_mode_flag() const {
-    return info()->is_strict() ? kStrictMode : kNonStrictMode;
+    return info()->is_strict_mode() ? kStrictMode : kNonStrictMode;
   }

   LChunk* chunk() const { return chunk_; }


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to