Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index ec41bc6e823630ec83950d4c83b9beafb5045fe9..5b14afbf033a62251510dcdb521e094291b4bcaf 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -4364,10 +4364,7 @@ void FullCodeGenerator::VisitUnaryOperation(UnaryOperation* expr) { |
void FullCodeGenerator::EmitUnaryOperation(UnaryOperation* expr, |
const char* comment) { |
Comment cmt(masm_, comment); |
- bool can_overwrite = expr->expression()->ResultOverwriteAllowed(); |
- UnaryOverwriteMode overwrite = |
- can_overwrite ? UNARY_OVERWRITE : UNARY_NO_OVERWRITE; |
- UnaryOpStub stub(expr->op(), overwrite); |
+ UnaryOpStub stub(expr->op()); |
// UnaryOpStub expects the argument to be in the |
// accumulator register eax. |
VisitForAccumulatorValue(expr->expression()); |