X87: silence C++ compiler warnings.
authorchunyang.dai <chunyang.dai@intel.com>
Thu, 12 Feb 2015 14:40:01 +0000 (06:40 -0800)
committerCommit bot <commit-bot@chromium.org>
Thu, 12 Feb 2015 14:40:07 +0000 (14:40 +0000)
To solence C++ compiler warnings because is_mutable_ is only for CHECK.

BUG=

Review URL: https://codereview.chromium.org/922673002

Cr-Commit-Position: refs/heads/master@{#26618}

src/x87/lithium-codegen-x87.h

index 4536948e0cb4c5771ea1b147cc0f0826e03ffa81..6b191b96ee1449167f858ec1a801e5f554e3ba32 100644 (file)
@@ -408,6 +408,7 @@ class LCodeGen: public LCodeGenBase {
     int st(X87Register reg) { return st2idx(ArrayIndex(reg)); }
     void pop() {
       DCHECK(is_mutable_);
+      USE(is_mutable_);
       stack_depth_--;
     }
     void push(X87Register reg) {