Revision: 23608
Author: [email protected]
Date: Tue Sep 2 12:44:59 2014 UTC
Log: MIPS64: Unbreak build after r23579.
TEST=
BUG=
[email protected], [email protected]
Review URL: https://codereview.chromium.org/531743002
https://code.google.com/p/v8/source/detail?r=23608
Modified:
/branches/bleeding_edge/src/mips64/full-codegen-mips64.cc
=======================================
--- /branches/bleeding_edge/src/mips64/full-codegen-mips64.cc Tue Aug 26
17:57:18 2014 UTC
+++ /branches/bleeding_edge/src/mips64/full-codegen-mips64.cc Tue Sep 2
12:44:59 2014 UTC
@@ -1963,12 +1963,12 @@
VisitForStackValue(expr->expression());
switch (expr->yield_kind()) {
- case Yield::SUSPEND:
+ case Yield::kSuspend:
// Pop value from top-of-stack slot; box result into result register.
EmitCreateIteratorResult(false);
__ push(result_register());
// Fall through.
- case Yield::INITIAL: {
+ case Yield::kInitial: {
Label suspend, continuation, post_runtime, resume;
__ jmp(&suspend);
@@ -1999,7 +1999,7 @@
break;
}
- case Yield::FINAL: {
+ case Yield::kFinal: {
VisitForAccumulatorValue(expr->generator_object());
__ li(a1,
Operand(Smi::FromInt(JSGeneratorObject::kGeneratorClosed)));
__ sd(a1, FieldMemOperand(result_register(),
@@ -2011,7 +2011,7 @@
break;
}
- case Yield::DELEGATING: {
+ case Yield::kDelegating: {
VisitForStackValue(expr->generator_object());
// Initial stack layout is as follows:
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.