projects
/
platform
/
upstream
/
v8.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
58deea0
)
X87: silence C++ compiler warnings.
author
chunyang.dai
<chunyang.dai@intel.com>
Thu, 12 Feb 2015 14:40:01 +0000
(06:40 -0800)
committer
Commit 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
patch
|
blob
|
history
diff --git
a/src/x87/lithium-codegen-x87.h
b/src/x87/lithium-codegen-x87.h
index 4536948e0cb4c5771ea1b147cc0f0826e03ffa81..6b191b96ee1449167f858ec1a801e5f554e3ba32 100644
(file)
--- a/
src/x87/lithium-codegen-x87.h
+++ b/
src/x87/lithium-codegen-x87.h
@@
-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) {